licrifandeMacBook-Pro:iOS-Client crifan$ git stash pop
Auto-merging JianDao/JianDao/Info.plist
CONFLICT (content): Merge conflict in JianDao/JianDao/Info.plist
Auto-merging JianDao/JianDao/Constants.swift
结果去Xcode中尝试打开info.plist,结果打不开:
The data couldn’t be read because it isn’t in the correct format.
然后想办法去用其他编辑器打开:
右击:
即:
<<<<<<< Updated upstream
<string>2016.4.21</string>
=======
<string>2016.4.16</string>
>>>>>>> Stashed changes
改为:
<string>2016.4.21</string>
即可,然后保存。
再去用Xcode打开,即可打开:
记得,去把之前冲突的文件,标记为:
已解决冲突
Mark xxx as Resolved
转载请注明:在路上 » [记录]解决git stash pop后Xcode中Info.plist的冲突:The data couldn’t be read because it isn’t in the correct format