Git-03-Git-Reset
1 ) 文字化け
1
2
3git> set LC_ALL=ko_KR.UTF-8
git> set LC_ALL=ja_JP.UTF-8
git> git diff
2 ) ファイル名化け
1
2
3git> git config --global --edit
git> git config --global code.quotepath false
git> git status
3 ) その前のコミット一つを取り消す。
1
2
3git> git reset HEAD~1
git> git log --graph
git> git status
4 ) その前のコミットに戻す。
1
git> git reflog
5 ) 簡略なコミットの順序
1
2
3
4
5
6
7new commit
↓
soft (green)
↓
red (mixed)
↓
existing commit (hard)
5 - 2 )
1
2
3
4
5
6
7
8
9
10git> git commit -am "test1"
git> git reset HEAD~1 --soft
git> git status // untracked
git> git reset HEAD~1 --hard
git> git status // untracked
git> git add . // tracked
git> git reset --hard
6 ) IDを利用した
1
git> git reset ct9379a
install_url
to use ShareThis. Please set it in _config.yml
.