Question about 'git branching'
- by michael
Hi,
I read this about git branch:
http://book.git-scm.com/3_basic_branching_and_merging.html
so I follow it and create 1 branch : experimental
And I
1. switch to experimental branch (git checkout experimental)
2. make a bunch of changes
3. commit it (git commit -a)
4. switch to master branch (git checkout master)
5. make some changes and commit…