Changes between Version 3 and Version 4 of GitTips
- Timestamp:
- 02/23/2010 02:53:21 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GitTips
v3 v4 9 9 1. Checkout master branch 10 10 {{{ 11 #!sh 11 12 git checkout master 12 13 }}} 13 14 1. Make commit 14 15 {{{ 16 #!sh 15 17 git commit -m "Fixed bug" 16 18 }}} 17 19 1. Checkout stable branch 18 20 {{{ 21 #!sh 19 22 git checkout stable 20 23 }}} 21 24 1. Apply the last commit to master to this branch as well 22 25 {{{ 26 #!sh 23 27 git format-patch -k --stdout -1 master | git am -3 -k 24 28 }}}