(provided by @spytheman) (copied from the one in vtl)
(If you don't already have a GitHub account, please create one. Your GitHub username will be referred to later as 'YOUR_GITHUB_USERNAME'. Change it accordingly in the steps below.)
-
Fork https://github.com/odaigh/votp using GitHub's interface to your own account. Let's say that the forked repository is at
https://github.com/YOUR_GITHUB_USERNAME/v
. -
Clone the main votp repository https://github.com/odaigh/votp to a local folder on your computer, say named vtl/ (
git clone https://github.com/odaigh/votp vtl
) -
cd vtl
-
git remote add pullrequest https://github.com/YOUR_GITHUB_USERNAME/v
NB: the remote namedpullrequest
should point to YOUR own forked repo, not the main v repository! After this, your local cloned repository is prepared for making pullrequests, and you can just do normal git operations such as:git pull
git status
and so on. -
When finished with a feature/bugfix/change, you can:
git checkout -b fix_alabala
-
git push pullrequest
# (NOTE: thepullrequest
remote was setup on step 4) -
On GitHub's web interface, go to: https://github.com/odaigh/votp/pulls
Here the UI shows a dialog with a button to make a new pull request based on the new pushed branch. (Example dialog: https://url4e.com/gyazo/images/364edc04.png)
-
After making your pullrequest (aka, PR), you can continue to work on the branch
fix_alabala
... just do againgit push pullrequest
when you have more commits. -
If there are merge conflicts, or a branch lags too much behind VTL's master, you can do the following:
git pull --rebase origin master
# solve conflicts and dogit rebase --continue
git push pullrequest -f
# this will overwrite your current remote branch with the updated version of your changes.
The point of doing the above steps, is to never directly push to the main VTL
repository, only to your own fork. Since your local master
branch tracks the
main VTL repository's master, then git checkout master
, as well as
git pull --rebase origin master
will continue to work as expected
(these are actually used by v up
) and git can always do it cleanly.
Git is very flexible, so there are other ways to accomplish the same thing. See the GitHub flow , for more information.