git prune

C++
 if you deleted a branch using the git web GUI and don't want it to show up in your local branch list anymore (git branch -r), then this is the command you should use.git config remote.origin.prune true

Source

Also in C++: