We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57de3ed commit d458efdCopy full SHA for d458efd
git-cln
@@ -1,6 +1,6 @@
1
#! /bin/bash
2
set -eu
3
-git fetch --prune
+git fetch --all --prune
4
git branch -l --format "%(refname:lstrip=2) %(upstream:track)" | while read -r br tr; do
5
if [ "$tr" == "[gone]" ]; then
6
echo "Removing $br..."
git-cob
@@ -5,6 +5,8 @@ if [ $# -ne 1 ]; then
exit 1
fi
7
8
+git fetch --all
9
+
10
inp=$1
11
br=$(git branch -l --format="%(refname:lstrip=2)" | grep -i "$inp")
12
git-fall
@@ -1,4 +1,5 @@
let u=0
cur=$(git branch --show-current)
git branch -l --format "%(refname:lstrip=2) %(upstream:lstrip=3) %(upstream:remotename) %(upstream:track)" | {
0 commit comments