Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse

$ git rebase -i HEAD~2

pick 004644d first commit

pick ae53bdf second commit --> squesh ae53bdf second commit


:wq

Patch 파일을 만들고 싶어요.

Info
  • commit-id에서부터 현재까지의 commit을 각patch파일로 생성 (commit 마다 patch파일 생성)
    • git format-patch [commit-id]
    • git format-patch -2

...

전달받은 Patch파일을 commit하고 싶어요.

...