Changes between Version 97 and Version 98 of DeveloperGuidelines/Git
- Timestamp:
- 03/31/14 20:22:13 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelines/Git
v97 v98 179 179 >>>>>>> "My Changes" 180 180 }}} 181 You can correct these conflict in your code text editor, then add them and continue the rebase:181 You can correct these conflict in your code text editor, then add them and continue the rebase: 182 182 {{{ 183 183 git add -u … … 217 217 218 218 ==== Squashing commits ==== 219 219 Option 1: 220 {{{ 221 git log 222 # note hash of commit that you wish to squash all commits from 223 git checkout <hash> 224 git branch -b original 225 git checkout master # Assuming you're working on master 226 git rebase -i original 227 }}} 228 229 Option 2: 220 230 {{{ 221 231 # Stash your current work … … 231 241 }}} 232 242 233 234 235 243 ==== Undoing a commit ==== 236 244 You may need to remove a commit you've made, either if you find you don't want it, or if it needs to be fixed. (Note if your commit has already been pushed to !GitHub and accepted into the trunk, then you should use a new commit to take out unwanted changes. This section only applies if you're fixing up your repository before the changes are in trunk.) … … 281 289 * Optionally squash your commits. 282 290 * Push your changes to !GitHub. 283 * If your change contains more than one commit (and you are not doing a pull request yet) 291 * If your change contains more than one commit (and you are not doing a pull request yet) 292 284 293 === Getting your changes accepted into the trunk repository === 285 294 … … 419 428 git push origin master 420 429 }}} 430 421 431 == Developer Configuration == 422 423 432 Tell git your name and email, which it uses to identify you as the author of commits. 424 433 And tell it your account on !GitHub. … … 447 456 An alternative to diffmerge is Perforce's free P4V: 448 457 * http://danlimerick.wordpress.com/2011/06/19/git-for-window-tip-use-p4merge-as-mergetool/ 458 449 459 === Windows === 450 460 Install [http://sourceforge.net/projects/console/ Console] & [http://www.sourcegear.com/diffmerge/downloads.php Diffmerge] & [http://markembling.info/2009/09/my-ideal-powershell-prompt-with-git-integration configure Powershell].