https://bugs.freedesktop.org/show_bug.cgi?id=94528

--- Comment #24 from Kevin Brace <kevinbr...@gmx.com> ---
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.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/openchrome-devel

Reply via email to