Git: Create A Patch Without A Commit
"create a patch without commit", can be also solved in this way:
git diff > my_patch.txt
Later you can apply this patch, also without a commit, by:
git apply my_patch.txt
git diff > my_patch.txt
git apply my_patch.txt
Comments
Post a Comment