Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
    
Source by docs.gitlab.com #
 
PREVIOUS NEXT
Tagged: #gitlab #patch
ADD COMMENT
Topic
Name
3+4 =