场景:在一次git clone操作中 出现了“error:The file "xxx.entitlements" couldn't be opened because there is no such file.”的问题。
分析:上网搜索后,发现.entitlements是Xcode的配置文件,通过全局搜索,可以发现在Project->Build Settings->Signing->Code Signing Entitlements 里面,用的是其他开发者的绝对路径。 通过比较,把他修改成本机的。
作者:动物园园长熊熊酱
链接:https://www.jianshu.com/p/e3e6a76aa602
我的场景
:-1: The file "XXXXXXX.entitlements" could not be opened. Verify the value of the CODE_SIGN_ENTITLEMENTS build setting for target "XXXXXXX" and build configuration "Debug" is correct and that the file exists on disk. (in target 'XXXXXXX')
这个是推送证书配置问题,用上述方法解决了
-------------------------------------------
error: Your local changes to the following files would be overwritten by merge:
中间一大堆文件
Please, commit your changes or stash them before you can merge.
error: The following untracked working tree files would be overwritten by merge:
分析错误原因是,自己在本地上面修改了某个文件代码,并没有提交到服务器,而团队其他成员也修改了这个文件的代码并提交到了服务器,在sourcetree上从服务器拉取项目到本地时发生了冲突,解决方法如下:
强制覆盖本地数据:
git fetch origin
git clean -f
git reset --hard origin/master
原文链接:https://blog.csdn.net/weixin_41809206/java/article/details/96307853
----------上述操作完成如果把自己写的代码都干掉了继续看下边------------------------
可以使用git reflog 命令查看本地的操作记录
b7057a9 HEAD@{0}: reset: moving to b7057a9
98abc5a HEAD@{1}: commit: more stuff added to foo
b7057a9 HEAD@{2}: commit (initial): initial commit
然后使用$ git reset 98abc5a 回到98abc5a对应的那次commit
reset命令有3种方式:
1:git reset –mixed:此为默认方式,不带任何参数的git reset,即时这种方式,它回退到某个版本,只保留源码,回退commit和index信息
2:git reset –soft:回退到某个版本,只回退了commit的信息,不会恢复到index file一级。如果还要提交,直接commit即可
3:git reset –hard:彻底回退到某个版本,本地的源码也会变为上一个版本的内容
#回退所有内容到上一个版本
git reset HEAD^
#回退a.py这个文件的版本到上一个版本
git reset HEAD^ a.py
#向前回退到第3个版本
git reset –soft HEAD~3
#将本地的状态回退到和远程的一样
git reset –hard origin/master
#回退到某个版本
git reset 057d
#回退到上一次提交的状态,按照某一次的commit完全反向的进行一次commit
git revert HEAD
如果我们某次修改了某些内容,并且已经commit到本地仓库,而且已经push到远程仓库了
这种情况下,我们想把本地和远程仓库都回退到某个版本,该怎么做呢?
前面讲到的git reset只是在本地仓库中回退版本,而远程仓库的版本不会变化
这样,即时本地reset了,但如果再git pull,那么,远程仓库的内容又会和本地之前版本的内容进行merge
这并不是我们想要的东西,这时可以有2种办法来解决这个问题:
1:直接在远程server的仓库目录下,执行git reset –soft 10efa来回退。注意:在远程不能使用mixed或hard参数
2:在本地直接把远程的master分支给删除,然后再把reset后的分支内容给push上去,如下:
#新建old_master分支做备份
git branch old_master
#push到远程
git push origin old_master:old_master
#本地仓库回退到某个版本
git reset –hard bae168
#删除远程的master分支
git push origin :master
#重新创建master分支
git push origin master
在删除远程master分支时,可能会有问题,见下:
$ git push origin :master
error: By default, deleting the current branch is denied, because the next
error: 'git clone' won't result in any file checked out, causing confusion.
error:
error: You can set 'receive.denyDeleteCurrent' configuration variable to
error: 'warn' or 'ignore' in the remote repository to allow deleting the
error: current branch, with or without a warning message.
error:
error: To squelch this message, you can set it to 'refuse'.
error: refusing to delete the current branch: refs/heads/master
To [email protected]:gitosis_test
! [remote rejected] master (deletion of the current branch prohibited)
error: failed to push some refs to '[email protected]:gitosis_test'
这时需要在远程仓库目录下,设置git的receive.denyDeleteCurrent参数
git receive.denyDeleteCurrent warn
然后,就可以删除远程的master分支了
摘自:https://www.imooc.com/wenda/detail/524783
------------------------------------------------