Horje
git tag delete Code Example
git tag delete
# First pull all remote tags locally
git pull --tags
# Then remove tags from remote first
git tag | grep -v v0.1.[0-9] | xargs -n 1 git push --delete origin
# Then remove locally
git tag | grep -v v0.1.[0-9] | xargs git tag -d

# If removing multiple, use grep to control what will be removed
# These commands make use of xargs which is a unix command. 
#     On windows, use git-bash to execute the same commands
git delete tag
Local:
git tag -d <tag_name>
Remote:
git push --delete origin tagname
gir remove tag
git tag -d <tag_name>
git remove tag
git diff -- . ':(exclude)db/irrelevant.php' ':(exclude)db/irrelevant2.php'
remove git tag
git tag -d tagName
git remove tag
git tag -d v<tag version>




Shell

Related
git new repo instructions Code Example git new repo instructions Code Example
wifi adapter not detected ubuntu Code Example wifi adapter not detected ubuntu Code Example
ubuntu command history Code Example ubuntu command history Code Example
run bash script in its directory Code Example run bash script in its directory Code Example
bash: /var/lib/snapd/snap/bin/docker-compose: No such file or directory Code Example bash: /var/lib/snapd/snap/bin/docker-compose: No such file or directory Code Example

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