Load PSSCOR4:
.loadby sos clr
.load C:\Debug\Psscor4\amd64\psscor4.dll
or:
#!/usr/bin/env bash | |
echo "Cygwin Installer - git-quick-stats" | |
chmod 0755 git-quick-stats && cp git-quick-stats /usr/local/bin/git-quick-stats | |
git config --global alias.quick-stats '! /usr/local/bin/git-quick-stats' | |
echo -e "...\ndone" |
Load PSSCOR4:
.loadby sos clr
.load C:\Debug\Psscor4\amd64\psscor4.dll
or:
#delete all the remote tags with the pattern your looking for, ie. DEV- | |
git tag | grep <pattern> | xargs -n 1 -i% git push origin :refs/tags/% | |
#delete all your local tags | |
git tag | xargs -n 1 -i% git tag -d % | |
#fetch the remote tags which still remain | |
git fetch |