Answers for "tag stale git branches to remove them but be able to restore them if necessary"

0

tag stale git branches to remove them but be able to restore them if necessary

git tag archive/<branchname> <branchname>
 git branch -D <branchname>
 git branch -d -r origin/<branchname>
 git push --tags
 git push origin :<branchname>
Posted by: Guest on April-21-2022

Code answers related to "tag stale git branches to remove them but be able to restore them if necessary"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language