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

Version Path
briar-2.0.5 CONTRIBUTING.md
briar-2.0.4 CONTRIBUTING.md
briar-2.0.3 CONTRIBUTING.md
briar-2.0.2 CONTRIBUTING.md
briar-2.0.1 CONTRIBUTING.md
briar-2.0.0 CONTRIBUTING.md
briar-1.4.2 CONTRIBUTING.md
briar-1.4.1 CONTRIBUTING.md
briar-1.3.2 CONTRIBUTING.md
briar-1.3.1 CONTRIBUTING.md
briar-1.3.0 CONTRIBUTING.md
briar-1.2.2 CONTRIBUTING.md
briar-1.2.1 CONTRIBUTING.md
briar-1.2.0 CONTRIBUTING.md
briar-1.1.9 CONTRIBUTING.md
briar-1.1.8 CONTRIBUTING.md
briar-1.1.7 CONTRIBUTING.md
briar-1.1.6 CONTRIBUTING.md
briar-1.1.5 CONTRIBUTING.md