1

我结帐以开发分支,在其中存储我的干净代码版本:

git checkout develop

然后我尝试拉:

git pull origin develop

在那里,我收到了这条消息:

error: Your local changes to the following files would be overwritten by merge:
    MyApp.xcodeproj/project.pbxproj
    Podfile
    Podfile.lock
Please, commit your changes or stash them before you can merge.
Aborting

我不想提交这些文件更改,那么最好的处理方法是什么?文件的重置 HEAD 是否有效,如下所示:

git reset HEAD MyApp.xcodeproj/project.pbxproj 
git reset HEAD Podfile 
git reset HEAD Podfile.lock

提前感谢

4

1 回答 1

0

尝试

git stash

然后做拉动和

git stash pop

但首先阅读相应的手册页;-)

于 2012-11-11T18:21:42.987 回答