删除损坏的 csproj 文件并从远程分支获取副本
remove corrupt csproj file and get copy off of a remote branch
我做了一个 git pull 并在我的项目 .csproj 文件中发现了一堆这样的东西。
<<<<<<< HEAD
=======
>>>>>>> 298a8db9b1cc88afda040414503dbc9d753cfd6a
似乎最容易删除我的文件,将该文件从远程分支中删除。
如何在不影响我已经做出的提交的情况下执行此操作?
如果你有合并冲突,想用ours
版本或者theirs
版本解决,就用git checkout --ours .csproj
或者git checkout --theirs .csproj
.
我做了一个 git pull 并在我的项目 .csproj 文件中发现了一堆这样的东西。
<<<<<<< HEAD
=======
>>>>>>> 298a8db9b1cc88afda040414503dbc9d753cfd6a
似乎最容易删除我的文件,将该文件从远程分支中删除。
如何在不影响我已经做出的提交的情况下执行此操作?
如果你有合并冲突,想用ours
版本或者theirs
版本解决,就用git checkout --ours .csproj
或者git checkout --theirs .csproj
.