Merge master branch with origin/master branch: $ git merge origin/master Result Example: $ git merge origin/master Updating 0ebd30c..a99dc51 Fast forward configure.ac | 1 + contrib/Makefile.am | 9 +- … As fetch and merge are common operation it can be replaced…
Month: May 2009
GIT: Useful commands
Some useful commands to begin with: Ignoring changes (ie. autogenerated): $ git update-index –assume-unchanged $(git ls-files po m4) Create and switch to new branch: $ git checkout -b new_branch Switch to another branch: $ git checkout master Branch list: $…