Sha256: a7b96a629d7cc1f03f9859920536506cb8f0812cc1412192aa7e3f7ccc97eaa5
Contents?: true
Size: 936 Bytes
Versions: 19
Compression:
Stored size: 936 Bytes
Contents
## Contributing ***All pull requests should be based off the `develop` branch.*** Briar uses a git-flow workflow. See these links for information about git-flow and git best practices. ##### Git Flow Step-by-Step guide * https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow ##### Git Best Practices * http://justinhileman.info/article/changing-history/ ##### git-flow command line tool We don't use the git-flow tools, but this is useful anyway. * http://danielkummer.github.io/git-flow-cheatsheet/ ## Start a Feature Start your work on a feature branch based off develop. ``` # If you don't already have the develop branch $ git fetch origin $ git co -t origin/develop # If you already have the develop branch $ git co develop $ git pull origin develop $ git co -b feature/my-new-feature # Publish your branch and make a pull-request on `develop` $ git push -u origin feature/my-new-feature ```
Version data entries
19 entries across 19 versions & 1 rubygems