Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 1.07 KB

GITFLOW.md

File metadata and controls

29 lines (26 loc) · 1.07 KB

Git Workflow

Development Worklow

  1. Find issue that you were assigned a. Or Assign issue to yourself
  2. LOCAL || git status to make sure you are on master
  3. LOCAL || git pull --rebase upstream master => makes sure master is up to date with truth
  4. LOCAL || git checkout -b feature-IssueThatYouWereAssigned
  5. GITHUB || pull request Create initial pull request with Task list of issues
  6. LOCAL || git status => to check branch
  7. Cyclical a. make edits b. git add c. git commit
  8. LOCAL || git pull --rebase upstream master
  9. LOCAL || git push origin feature-IssueThatYouWereAssigned
  10. GITHUB || pull request finalize and assign
  11. GITHUB || fill out git-splainin within pull request comment field
  12. IF MAKING Changes to pull request
  13. LOCAL || make changes locally
  14. LOCAL || git add
  15. LOCAL || git commit
  16. LOCAL || git pull --rebase upstream master
  17. LOCAL || git push origin feature-IssueThatYouWereAssigned

SCRUM MASTER // SECOND SET OF EYES

  1. review changes and merge
  2. merge request