-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdf7512
commit b7172a0
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Process | ||
|
||
We work off of the `develop` branch and use a pull request work flow. Whenever you have some work to do: | ||
|
||
```shell | ||
git checkout develop | ||
git pull | ||
git checkout -b "YOUR_NAME-FEATURE_NAME" | ||
``` | ||
|
||
Do some work. | ||
|
||
```shell | ||
git push -u origin YOUR_BRANCH_NAME | ||
``` | ||
|
||
When you're done, create a pull request on github using the following [template](https://embeddedartistry.com/blog/2017/8/4/a-github-pull-request-template-for-your-projects). | ||
|
||
This workflow is quite new, so if you have any suggestions on how it can be improved, [shout](mailto:shaun@aux.co.za)! |