gianlucadelgobbo / avnode

4 stars 7 forks source link

Merge latest design into latest master #94

Closed stefanisak closed 8 years ago

stefanisak commented 8 years ago

We should try to improve the contribution workflow. design branch is more or less used as a redundant master. This is bad and we need to get rid off it.

Instead we should try to establish a better workflow to get closer to a continuous integration practice. So please:

1 Work on feature branches

git checkout master
git pull origin master
git checkout -b feature/new-feature-xyz

2 Make your changes and push your feature branch

git push origin feature/new-feature-xyz

3 Create a pull request upon completion

https://help.github.com/articles/creating-a-pull-request/

Working on feature branches should also help to reduce jumping from one thing to another.