Skip to content
This repository was archived by the owner on Aug 25, 2020. It is now read-only.
shivani-umass edited this page Oct 31, 2018 · 3 revisions

Welcome to the RatDevGitTut wiki!

How to make a pull request:

  1. Go to "pull request" tab and click on "new pull request"
  2. Add what you want to merge and click "create pull request"
  3. Two people must review your code in order for it to be eligible to be merged into master because master should always contain our "current final draft".
    • To review someone's code:
      • Go into "pull requests" tab and then "files changed" and approve
  4. Go into your local repository
  5. git checkout master
  6. git checkout <branch name>
  7. git merge master
  8. There may be a conflict!
    • If there is:
      • Resolve your conflict by editing the file that has the conflict
  9. git add <filename>
  10. git status (to check the status and see if the file is modified)
  11. git commit (do :q after)
  12. git push
  13. Go to GitHub into your pull request and click "merge"

Clone this wiki locally