History for http://www.web2media.net/laktek/2010/06/04/handy-git-commands-that-saves-my-day/

Sort by: Date / Title /

  1. git pull origin master git checkout -b new-feature-branch git status git commit -am "commit message" <--cycle from step 2-4, until work is done-->   git checkout master git pull origin master #update the master before merging the new changes git checkout new-feature-branch git rebase master #apply the new changes on top of current master   git checkout master git merge new-feature-branch git push origin
    05-06-2010 to , , , by totpunk

First / Previous / Next / Last / Page 1 of 1