开发者

What happens if I delete a remote branch that someone else is working on?

开发者 https://www.devze.com 2023-02-14 13:38 出处:网络
I have created a remote branch, that I now want to delete because it is merged back into our integration branch. I do a

I have created a remote branch, that I now want to delete because it is merged back into our integration branch. I do a

git push origin :name_of_branch

to delete the remote branch.

However, unfortunately I was mistaken and one of the other developers actually开发者_开发百科 has local commits originating on that branch. How do I disturb his work, is his changes now in danger when he pulls?

Thanks


Pulling never deletes your local branch. If your other developer uses git fetch --prune, his local remote tracking branches (e.g. remote/origin/name_of_branch) would be deleted, but the local version he is working on should stay untouched, and when he pushes them again, the branch would be recreated.

(Though it might be more useful to push the new commits under a new branch name, depending on context.)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号