Answers for "how to make gitlab patch"

0

how to make gitlab patch

diff -Naur target.rb.original target.rb > my_awesome_change.patch
Posted by: Guest on June-09-2021
0

how to make gitlab patch

# to generate a patch between two commits
git diff commitid1 commitid2 > my_awesome_change.patch

# to generate a patch between the HEAD and a specific commits
git diff commitid1 > my_awesome_change.patch
Posted by: Guest on June-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language