Actions
Common git operations » History » Revision 1
Revision 1/18
| Next »
cryptogopher, 2019-05-04 22:54
Common git operations¶
Prerequisites:
cd ~/plugins/issue_recurring
Issue resolution in separate branch¶
Merge branch into master¶
- Push uncommited changes on branch.
- Checkout and update master:
$ git checkout master $ git pull
- Merge and push issueN branch:
$ git merge issueN $ git push
- Delete merged branch from local and remote:
$ git branch -d issueN $ git push origin :issueN
- Verify:
$ git branch -a
Updated by cryptogopher over 5 years ago · 1 revisions