Answers for "how to git squash"

1

git squash

git rebase -i HEAD~3
Posted by: Guest on February-06-2022
0

git squash commit

git rebase -i HEAD~5
# As the commit on line 1 is HEAD, in most cases you would leave this as 
# pick. You cannot use squash or fixup as there is no other commit to 
# squash the commit into.
Posted by: Guest on January-04-2022
0

git squash command

git config --global alias.slog = log --graph --all --topo-order --pretty='format:%h %ai %s%d (%an)'
Posted by: Guest on January-27-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language