- Docker preparations
sudo chmod +x /usr/local/bin/docker-compose
sudo usermod -aG docker ${USER}
$ uname -r
#!/usr/bin/php | |
<?php | |
/** | |
* GIT Merge Helper | |
* | |
* Installation: | |
* 1. Download / Clone this GIST https://gist.github.com/clops/3ac9cd6c42a66ba65101 into some directory | |
* 2. chmod a+x deploy.php | |
* 3. Add an alias into .bash_profile with a full path to the deploy.php script, mine is: | |
* alias deploy="~/dev/3ac9cd6c42a66ba65101/deploy.php" |
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |