将本地分支与git存储库中的远程分支同步

这个问题在这里已经有了答案:

  • 我如何强制“git pull”覆盖本地文件? 36个答案

  • 你必须首先承诺:

    git commit -a -m "commit message"

    之后,你可以从远程拉


    您拥有在远程分支中添加的文件副本,但未在本地进行跟踪。 删除或移动这些文件,然后你就可以拉。

    当你做git status ,会有一部分被列为Untracked Files。 你可以做git stash -u ,它会将所有未跟踪的文件添加到存储中。 然后,您将能够毫无问题地完成更改。

    链接地址: http://www.djcxy.com/p/4271.html

    上一篇: Sync local branch with the remote branch in git repository

    下一篇: How to convert a unix timestamp (seconds since epoch) to Ruby DateTime?