我使用的是Git 1.7.4.1。

我想从存储库中获得我的代码的最新版本,但我得到错误:

$ git pull
….
M   selenium/ant/build.properties
….
M   selenium/scripts/linux/get_latest_updates.sh
M   selenium/scripts/windows/start-selenium.bat
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>' as appropriate to mark resolution, or use 'git commit -a'.

我已经删除了工具抱怨的文件的本地副本,但我仍然得到错误。

如何从远程存储库签出最新版本?


当前回答

通过运行这个命令,你会得到最新的标签,通常是你项目的版本:

git describe --abbrev=0 --tags

其他回答

我知道你想抛弃你的本地改动然后把遥控器上的东西拿下来?

如果所有这些都失败了,如果你(完全可以理解)害怕“重置”,最简单的事情就是克隆原点到一个新目录,并丢弃旧目录。

案例1:不要关心局部变化

解决方案1:获取最新的代码并重置代码 Git获取来源 Git重置-hard origin/[tag/branch/commit-id: master] 解决方法2:删除文件夹后重新克隆 Rm -rf [project_folder] Git克隆[remote_repo]

案例2:关注局部变化

Solution 1: no conflicts with new-online version git fetch origin git status will report something like: Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded. Then get the latest version git pull Solution 2: conflicts with new-online version git fetch origin git status will report something like: error: Your local changes to the following files would be overwritten by merge: file_name Please, commit your changes or stash them before you can merge. Aborting Commit your local changes git add . git commit -m ‘Commit msg’ Try to get the changes (will fail) git pull will report something like: Pull is not possible because you have unmerged files. Please, fix them up in the work tree, and then use 'git add/rm <file>' as appropriate to mark resolution, or use 'git commit -a'. Open the conflict file and fix the conflict. Then: git add . git commit -m ‘Fix conflicts’ git pull will report something like: Already up-to-date.

更多信息: 我如何使用'git重置-硬头'恢复到以前的提交?

我怀疑发生的事情可能是你已经删除了你修改的文件(因为你不关心这些变化),现在git正在删除是一个变化。

下面是一种方法,它将更改从工作副本中移出,并移到“存储”中(如果您真的再次需要它们,则可以检索它们),这样您就可以从上游向下拉最新更改。

git stash  
git pull

如果您想检索您的文件(与上游更改的潜在冲突等),请运行git stash apply将这些更改粘贴到代码之上。这样,您就有了“撤消”方法。

回答你的问题只需两步:-

使用git Pull从你的git repo中提取最新的更改 使用git checkout——清理有未分阶段更改的本地工作目录。 这将显示从远程git回购到本地回购的最新更改。清除所有本地非分期更改。

请注意git结帐——。将丢弃您在本地工作目录中的所有更改。如果你想放弃对选定文件的任何更改,请使用git checkout——<filename>。如果你不想失去你的非阶段性变化使用git stash,因为它会清理你的本地工作目录的所有非阶段性变化,同时保存它,如果你将来需要它。

如果你使用Git GUI,首先获取然后合并。

通过远程菜单获取>>获取>>来源。 通过合并菜单>>合并本地。

出现以下对话框。

选择跟踪分支单选按钮(也是默认选择),让黄色框空,按合并,这应该更新文件。

在做这些步骤之前,我已经恢复了一些局部更改,因为我想无论如何都要丢弃这些更改,这样我就不必在以后通过合并来消除。