Horje
git tutorial remove branches on local that do not exist on remote Code Example
git delete local branches not on remote
git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done
delete local branches not on remote
git branch -vv | grep ': gone]'|  grep -v "\*" | awk '{ print $1; }' | xargs -r git branch -D
git tutorial remove branches on local that do not exist on remote
git fetch -p




Shell

Related
git archive Code Example git archive Code Example
grep for today's date Code Example grep for today's date Code Example
git create new repository Code Example git create new repository Code Example
run tar.xz ubuntu Code Example run tar.xz ubuntu Code Example
download a github folder Code Example download a github folder Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
17