Project

General

Profile

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

  1. Push uncommited changes on branch.
  2. Checkout and update master:
    $ git checkout master
    $ git pull
    
  3. Merge and push issueN branch:
    $ git merge issueN
    $ git push
    
  4. Delete merged branch from local and remote:
    $ git branch -d issueN
    $ git push origin :issueN
    
  5. Verify:
    $ git branch -a
    

Updated by cryptogopher over 5 years ago · 1 revisions

Also available in: PDF HTML TXT