You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git branch --merged master | grep -v '^\*\| master'| xargs -n 1 git branch -d # will not delete master if master is not checked out
234
+
git branch --merged master | grep -v '^\*\| master'|sed 's/^ \+//'|xargs -d '\n' -n 1 git branch -d # will not delete master if master is not checked out
235
235
```
236
236
237
237
## List all branches and their upstreams, as well as last commit on branch
0 commit comments