I made three commits in the same file using git commit arquivo.ext -m "msg"
.
I realized that these three commits would be better together, as if they were a single commit. Can you do this even after git push
?
I made three commits in the same file using git commit arquivo.ext -m "msg"
.
I realized that these three commits would be better together, as if they were a single commit. Can you do this even after git push
?
You can do this:
git reset --soft HEAD~3
git commit -m "GitCombinado com os ultimos 3"
More details: link