git prone code example
Example 1: git prune
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.
Example 2: git prune while fetch globally
git config --global fetch.prune true
Example 3: git config pull with prune
git config remote.origin.prune true