Brief
While using tortoise git. You might have observed below things.
- Branches deleted from the remote sever i.e. GitHub, TFS
- But the branch is still available in your local.
Purpose
- Update your local branches with the remote branches.
- Then remove all the branches from the local if deleted from the remote.
Steps
- Right click in the local git repository folder.
- And click 'Git Bash UI' and type below command then press enter.
- git remote update origin --prune
- Refer below screenshot for reference.
Comments
Post a Comment