On 2013-01-23 10:21, Derek Atkins wrote:
> [...]
>
> The next step will be to get gitolite to push to github, but we don't
> want to set that up until everyone is ready to reset github.

I'm ready if everyone else is (git format-patch and am worked smoothly).
If anyone's curious:

$ cd $OLD_REPO_DIR
$ git checkout my-branch
$ git format-patch --stdout trunk >mbox # Puts patches of all commits
from trunk (exclusive) to HEAD (inclusive), in correct order, into mbox
$ cd $NEW_REPO_DIR
$ git checkout -b my-branch trunk
$ git am $OLD_REPO_DIR/mbox
$ # Check new repo before doing the next step
$ rm -rf $OLD_REPO_DIR

Regards,

Yawar


Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel

Reply via email to