#git bot interface
History of !github_fork
- Quick guide to Forking a repo on github: use the "Fork" button to copy the repo to your account; git clone $URL_OF_FORK; git remote rename origin myfork; git remote add upstream $URL_OF_ORIGINAL; git commit -m 'Some new stuff'; git pull --rebase upstream/master; git push myfork; click the "Create Pull Request" button on your fork. Done!
By Eugene at 2014-02-04 03:07:23
- Quick guide to Forking a repo on github: Push the "Fork" button to copy the repo to your account; git clone $URL_OF_FORK; git remote rename origin myfork; git remote add upstream $URL_OF_ORIGINAL; git commit -m 'Some new stuff'; git fetch upstream; git pull --rebase upstream/master; git push myfork; click the "Create Pull Request" button on your fork. Done!
By Eugene at 2014-02-04 03:06:18