The problem of deleting the remote branch

来源:互联网 发布:暴风影音mac版能在线么 编辑:程序博客网 时间:2024/04/30 06:15

➜  screenwords git:(master)git push origin :master

remote: error: By default, deleting the current branch is denied, because the next

remote: error: 'git clone' won't result in any file checked out, causing confusion.

remote: error: 

remote: error: You can set 'receive.denyDeleteCurrent' configuration variable to

remote: error: 'warn' or 'ignore' in the remote repository to allow deleting the

remote: error: current branch, with or without a warning message.

remote: error: 

remote: error: To squelch this message, you can set it to 'refuse'.

remote: error: refusing to delete the current branch: refs/heads/master

To root@182.92.243.187:/home/gitrepos/Website.git

 ! [remote rejected] master (deletion of the current branch prohibited)

error: failed to push some refs to 'root@182.92.243.187:/home/gitrepos/Website.git'


---------------------------------------------------------------------------------------------------

First decide which branch should be the default branch when the repository is cloned. I assume new_master for this example.

On one of the clients create the new_master branch on the remote repository, you may use anything for master instead, e.g. a commit or another branch name, or skip this step if you already have a suitable branch on the remote.

git push origin master:new_master

The next step can't be done from remote, so execute the command in your remote repository (e.g. using SSH):

给远程分支指定HEAD的操作只能在远程通过SSH完成。。

cd /path/to/my_git_repogit symbolic-ref HEAD refs/heads/new_master

Alternatively, change the content of the HEAD file directly.

Back on the client:

git fetchgit remote show origin

You should see that the HEAD points to new_master instead of master (or that HEAD is ambiguous if you set new_master to be master). Now we can remove the old master:

git push origin :master

Git shouldn't complain anymore about the deletion. Finally, set the local refs/remotes/origin/HEAD:

git remote set-head origin -a 这步是根据remote origin的head来设置本地的引用

0 0