Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 772 Bytes

GitHubCollabSteps.md

File metadata and controls

18 lines (17 loc) · 772 Bytes

`# Git Hub Collaboration

Steps for Collaborating

  1. Git clone repository to your local computer
  2. Have one person create a dev branch for your group
  3. git checkout -b to create new branch
  4. Work on branch
  5. Git add .
  6. Git commit -m "message"
  7. Git push your whole branch ( git push --set upstream_)
  8. Go to GitHub and MERGE to YOUR GROUPS dev double check top bar before creating the pull request
  9. Complete merge and delete branch in GitHub
  10. Alert your teammates you have merged
  11. git checkout -b to a new branch in your local computer
  12. git pull origin dev to update new branch
  13. git branch -d (name of old branch) to delete old branch
  14. Repeat Steps 4-13

IMPORTANT: git add and commit before pulling dev to your branch