ログ日記

作業ログと日記とメモ

2011-12-01から1日間の記事一覧

git revert で 複数のコミットを取り消した状態でコミットする

Git

git revert --help を見る。 EXAMPLES git revert HEAD~3 Revert the changes specified by the fourth last commit in HEAD and create a new commit with the reverted changes. git revert -n master5..master2 Revert the changes done by commits from …