Skip to content

Instantly share code, notes, and snippets.

View spardue's full-sized avatar

Stephen spardue

  • Atlanta, Georgia
View GitHub Profile
@spardue
spardue / gist:6be8f1ee7e117315c3e11eb641bf88cf
Last active April 25, 2022 13:00
Squashing without Rebase
# So basically, you make one commit and just continue to amend it until your work is done
git checkout develop
git pull
git checkout -b JIRATICKET_1234
git add file1
git add file2
git commit -m "JIRATICKET_1234 - Description"
# make some changes
git add file1
# ammend the commit with updates