<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - HDMI port is not working on current KMS driver with VX900 platform"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=94528#c24">Comment # 24</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - HDMI port is not working on current KMS driver with VX900 platform"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=94528">bug 94528</a>
              from <span class="vcard"><a class="email" href="mailto:kevinbrace@gmx.com" title="Kevin Brace <kevinbrace@gmx.com>"> <span class="fn">Kevin Brace</span></a>
</span></b>
        <pre>Hi Frank,

You can probably move the commit you made to the cloned drm-openchrome
anonymous Git repository by creating a patch file.
If you have not yet committed the change, you can save the 

git diff > ("name of the .patch file")
git diff > change.patch

You can apply the patch this way.

patch -p1 < ("name of the .patch file")
patch -p1 < change.patch

You likely already did a commit, so this is probably how you will get the
.patch file ready.

git format-patch origin

or 

git format-patch HEAD~1

Now apply the patch to the newly cloned repository.

patch -p1 < change.patch
git commit -a

Here, just copy the text body of the patch "git format-patch origin" just
created.
To make changes to the current head

git commit --amend

I hope it works.
Let me know if something goes wrong.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>