「Debian活用/その他」の版間の差分

ナビゲーションに移動 検索に移動
 
(同じ利用者による、間の4版が非表示)
 
git diff --name-only --cached
git diff ID
git log
</nowiki>
 
<nowiki>
git format-patch --start-number NUMBER ID
 
git apply --check 0001_test0001-test.patch
 
patch -p1 < 0001-test.patch
</nowiki>
 
<nowiki>
$ git commit --amend
 
 
 
$ git rebase -i HEAD~n
pickをeditに変更する
git commit --amend -s -m ""
git rebase --continue
 
git stash -u
git stash list
git stash apply stash@{0}
git stash apply stash@{0} --index
git stash drop stash@{0}
</nowiki>
 

ナビゲーション メニュー