There was an error while loading. Please reload this page.
Descriptions and guides for the development of bitfl
http://scottchacon.com/2011/08/31/github-flow.html
$ git remote <url from github>
$ git checkout -b feature_branch
$ git push origin feature_branch
$ git fetch -p
$ git checkout feature_branch
$ git merge master
If you make a mistake and commit a change to the wrong branch, you can revert any commit:
http://stackoverflow.com/questions/4114095/git-revert-to-previous-commit-how
To do this, you will need to edit the hook script that is executed on post-commit.
From the bitfl dir:
$ nano .git/hooks/post-commit
This should likely be empty, add the following contents:
#!/bin/sh
# This script will execute after a commit is complete
# Automatically push the changes back to origin
git push