1
0
hugo/content/blog/2017-04-05-git.md
2024-04-23 22:21:26 +09:00

521 B

+++ date = "2017-04-05" tags = ["git"] title = "git fixup" slug = "git" +++

git fixupが便利だった件。

こちらはcommit fixupでrebaseを書き換える場合

$ GIT_SEQUENCE_EDITOR="sed -ie '2 s/pick/fixup/g'" git rebase -i --root

こうやると1行目のコミットに2行目のコミットが統合される。

あと、~/.gitconfigに書いておくのも便利そう(上記とは内容が異なる)。

~/.gitconfig

[rebase]
    autofixup = true
    autosquash = true