Changes between Version 25 and Version 26 of DeveloperGuidelines/Git
- Timestamp:
- 01/26/12 01:53:30 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelines/Git
v25 v26 76 76 git show :3:file.txt > file.txt.OTHER 77 77 }}} 78 Alternatively you can use the changes in your remote branch (theirs / OTHER): 78 You can use the changes to a file in the remote branch (theirs / OTHER): 79 {{{ 80 git checkout --theirs filename.c 81 git add filename.c 82 git commit 83 }}} 84 ...or the changes to a file in your local branch (ours / THIS): 85 {{{ 86 git checkout --ours filename.c 87 git add filename.c 88 git commit 89 }}} 90 ...or the changes to ALL files in the remote branch (theirs / OTHER): 79 91 {{{ 80 92 git checkout --theirs . # checkout our local version of all files … … 82 94 git commit # commit the merge 83 95 }}} 84 Or the changes in your local branch (ours / THIS)96 Or the changes to ALL files in your local branch (ours / THIS) 85 97 {{{ 86 98 git checkout --ours . # checkout our local version of all files