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
@nihilismus
nihilismus / atom-beta-update.sh
Last active June 14, 2016 05:50
atom-beta-update.sh: download & install in openSUSE the latest Beta version of Atom from GitHub
#!/bin/bash
# atom-beta-update.sh: download 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.
@okunishinishi
okunishinishi / Remove all git tags
Created March 8, 2014 03:12
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