Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: A guide to using Git
Homepage: http://cs.stanford.edu/~blynn/gitmagic/
Clone URL: git://github.com/blynn/gitmagic.git
Search Repo:
Minor edits.
blynn (author)
Fri May 30 23:34:30 -0700 2008
commit  03fac4d6179fce5d137a6042bb010db009e5bed3
tree    e13431eba3145c421e1da2c422b96bf1718f0330
parent  7da486fd0159620eaedf9f59bc7091549d2f01b8
...
119
120
121
122
 
123
124
125
126
127
 
128
129
130
...
119
120
121
 
122
123
124
125
126
 
127
128
129
130
0
@@ -119,12 +119,12 @@ It's easy to extend this trick for any number of parts.
0
 
0
 === Reorganizing a Medley ===
0
 
0
-Perhaps you like to work on all aspects of a project in the same branch, but want others to avoid seeing works-in-progress, and want your commits neatly organized. Then after cloning:
0
+Perhaps you like to work on all aspects of a project in the same branch. You want to keep works-in-progress to yourself and want others to see your commits only when they have been neatly organized. Then after cloning:
0
 
0
   $ git checkout -b sanitized
0
   $ git checkout -b medley
0
 
0
-Next, work on anything: fix bugs, add features, add temporary code, and so forth, and commit often along the way. Then:
0
+Next, work on anything: fix bugs, add features, add temporary code, and so forth, committing often along the way. Then:
0
 
0
   $ git checkout sanitized
0
   $ git cherry-pick SHA1_HASH

Comments

    No one has commented yet.