Skip to content

Instantly share code, notes, and snippets.

View Fred-Barclay's full-sized avatar
💭
On the way to Mars

Fred Barclay Fred-Barclay

💭
On the way to Mars
  • Bumping around in the bush.
View GitHub Profile
@Fred-Barclay
Fred-Barclay / Remove all git tags
Created October 27, 2016 21:50 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d
@Fred-Barclay
Fred-Barclay / atom-beta-update.sh
Created April 19, 2016 21:16 — forked from nihilismus/atom-beta-update.sh
atom-beta-update.sh: download & install in openSUSE the latest Beta version of Atom from GitHub
#!/bin/sh
# atom-beta-update.sh: download & install in openSUSE the latest Beta version
# of Atom from GitHub: https://atom.io/beta
# Copyright © 2016 Antonio Hernández Blas <hba.nihilismus@gmail.com>
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.