How to manage branches in GIT …
Year: 2009
GIT: Configuration
Using GIT became my daily content. How about making my day happier? More colorful? 🙂
GIT: Change commiter (author) name
Sometime when I access my GIT repo from the outside form a new station I forget to setup the .gitconfig file >:-(
GIT: Merging Branches
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…
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: $…