LoginSignup
1
1

More than 1 year has passed since last update.

LinuxでPatchを適用・作成

Last updated at Posted at 2022-03-24

結論

パッチ作成

$ git diff > name.patch

パッチ適用

$ patch -p1 < name.patch

パッチ内容の戻し

$ patch -R file_path < name.patch

参考

1
1
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1