Git post-commit hook to keep master
and gh-pages
branch in sync :
In your Git repository create a file .git/hooks/post-commit
and fill it with this:
#!/bin/sh
git checkout gh-pages
git rebase master
git checkout master
/*! | |
* quantize.js Copyright 2008 Nick Rabinowitz. | |
* Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php | |
*/ | |
// fill out a couple protovis dependencies | |
/*! | |
* Block below copied from Protovis: http://mbostock.github.com/protovis/ | |
* Copyright 2010 Stanford Visualization Group | |
* Licensed under the BSD License: http://www.opensource.org/licenses/bsd-license.php |
Git post-commit hook to keep master
and gh-pages
branch in sync :
In your Git repository create a file .git/hooks/post-commit
and fill it with this:
#!/bin/sh
git checkout gh-pages
git rebase master
git checkout master
This is how I configured the deploy of my rails apps to AWS Elastic Beanstalk through CircleCI 1.0.
If you are using the Circle CI 2.0, take a look at this article from ryansimms
On Project Settings > Environment Variables add this keys:
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
# Latest update: 2021/09/06 | |
# Wine version: 6.16 | |
# | |
# How to make Fusion360 work under Void Linux with latest Wine available directly from xbps. | |
# | |
# Resources heavily taken from: | |
# https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version- | |
# ======================== | |
# OpenGL as graphic driver |