“Git -Schnitt -Fernzweige” Code-Antworten

Git -PRUNE -Filialen lokale Niederlassungen

# for pruning of local branches that have been deleted on remote
git remote prune origin

# for checking local branches and if they can be deleted
# because they have been merged into another branch already
git branch --merged >/tmp/merged-branches && \
  vi /tmp/merged-branches && xargs git branch -d </tmp/merged-branches
Envious Elk

Git Clean Local Remote Branch

git fetch origin --prune
Ivix4u

Git -PRUNE -Filialen lokale Niederlassungen

# To delete local old/merged branches:
git fetch --prune
git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d

# This string gets the list of remote branches and passes it into egrep through the standard input. And filters the branches that have a remote tracking branch (using git branch -vv and filtering for those that have origin) then getting the first column of that output which will be the branch name.
# Finally passing all the branch names into the delete branch command.
# Since it is using the -d option, it will not delete branches that have not been merged into the branch that you are on when you run this command.
# Also remember that you'll need to run git fetch --prune first, otherwise git branch -r will still see the remote branches.
Goofy Goober

Git -Schnitt -Fernzweige

git remote prune origin
foloinfo

Git entfernen löschte Fernabziele

git fetch origin --prune
Clever Corncrake

Git -PRUNE -Filialen lokale Niederlassungen

npx git-removed-branches --prune
Cooperative Centipede

Ähnliche Antworten wie “Git -Schnitt -Fernzweige”

Fragen ähnlich wie “Git -Schnitt -Fernzweige”

Weitere verwandte Antworten zu “Git -Schnitt -Fernzweige” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen