Changes between Version 1 and Version 2 of pm/DVCS
- Timestamp:
- 2011/05/31 16:22:50 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pm/DVCS
v1 v2 13 13 create mode 100644 テスト.txt 14 14 }}} 15 = gitのtips = 16 == git addで追加したファイルのキャンセル == 17 {{{ 18 $ git rm --cached xxx 19 }}} 20 でaddで追加したファイルをコミット対処から除く。 21 == コミット前に戻りたい == 22 コミットをやり直したい場合は、reflogを使って次のようにする。(変更したファイルはそのまま) 23 {{{ 24 $ git reflog 25 8855c0b HEAD@{0}: commit: test2. 26 b2e884f HEAD@{1}: commit (initial): test1. 27 28 $ git reset HEAD@{1} // test2のコミットを取消 29 Unstaged change after reset: 30 M test 31 $ git log 32 ... 33 test1. 34 }}} 35 36 resetを行うときに 37 {{{ 38 $ git reset --hard XXX 39 }}} 40 のようにすると、ファイルの変更内容も取り消すことができる。 15 41 16 42 = mercurialの文字化け =