Total says mostly the issue i'm having. Instead of clicking 'merge' I clicked 'delete'. How do I undo this action / retrieve a new copy of this remote branch?
Thanks.
Total says mostly the issue i'm having. Instead of clicking 'merge' I clicked 'delete'. How do I undo this action / retrieve a new copy of this remote branch?
Thanks.
Could you just do git fetch
and then git checkout [branch]
? This will only work on Git ≥ 1.6.6.
I used
git checkout -b develop origin/develop
to retrieve the remote branch and create a new local branch of this repo.