Skip to content

Instantly share code, notes, and snippets.

@BeokBeok
Last active October 30, 2023 02:35
Show Gist options
  • Save BeokBeok/9357a4aa6cce44213ef3658fbf7a00f8 to your computer and use it in GitHub Desktop.
Save BeokBeok/9357a4aa6cce44213ef3658fbf7a00f8 to your computer and use it in GitHub Desktop.
[Git] Stash 를 패치파일로 만들기
git stash list // patch 파일 만들 stash 확인
git stash show -p stash@{0} > filename.patch
@BeokBeok
Copy link
Author

패치 적용

patch -p1 < filename.patch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment