Guest User

Untitled

a guest
Oct 22nd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Ideabox Workflow
  2.  
  3. 1. Everyone pulls from remote Master to your local Master. `git pull origin master`.
  4. 2. Create a new branch per functality. `git checkout -b branchname`.
  5. 3. Commit & push to that branch periodically.
  6. ```
  7. git add .
  8. git commit -m "commit message"`
  9. git push branchname
  10. ```
  11. 4. Function is bug-free -- get OK from team members. Create GitHub pull request & merge to Master.
  12. 5. Update waffle.io. Repeat process from step #1.
Add Comment
Please, Sign In to add comment