简体   繁体   中英

Deleting local branch named origin/xyz without deleting remote branch with same name xyz in Git?

I have 2 local branches named origin/QAD-1649 and QAD-1649 , and a remote branch with same name QAD-1649 . I want to delete the local branch named origin/QAD-1649 without deleting the remote branch so that I can continue working on the local branch QAD-1649 which should track remote branch origin/QAD-1649 .

The local branch QAD-1649 currently tracks some another branch origin/compare which is in forked main project repository. I am trying to update it to origin/QAD-1649 in my main project repository. How can I achieve this without losing my remote branch QAD-1649 ?

git branch -d only deletes local branches. So git branch -d origin/QAD-1649 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM