Changes between Version 1 and Version 2 of pm/DVCS


Ignore:
Timestamp:
2011/05/31 16:22:50 (13 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pm/DVCS

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