If I have a bunch of merge commits on a branch, if I use
git reset --soft <old_sha>
will git remove/delete the commits between old_sha and the most current commit - git does garbage collection right? Just looking to save disk space.
If I have a bunch of merge commits on a branch, if I use
git reset --soft <old_sha>
will git remove/delete the commits between old_sha and the most current commit - git does garbage collection right? Just looking to save disk space.