How do I push amended commit to the remote Git repository?

后端 未结 16 1774
深忆病人
深忆病人 2020-11-22 04:42

When I\'ve worked a bit with my source code, I did my usual thing commit and then I pushed to a remote repository. But then I noticed I forgot to organize my imports in the

16条回答
  •  我寻月下人不归
    2020-11-22 04:55

    Here is a very simple and clean way to push your changes after you have already made a git add "your files" and git commit --amend:

    git push origin master -f
    

    or:

    git push origin master --force
    

提交回复
热议问题