Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 742 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (21 loc) · 742 Bytes

Team Contribution Guidelines

  1. Create a branch separate from master with a name relating to your task.
git checkout -b sample-branch-name
  1. Add your code.

  2. Push your code to your branch.

git add .
git commit -m "Generate a list of courses"
git push origin sample-branch-name
  1. Go to this repository on GitHub, click on the green button that says compare branches.

  2. Submit and pull request and try to get at least one other person to approve your changes before clicking the button that says 'Merge'.

  3. Delete remote branch on GitHub after merging.

  4. Delete your local branch and update local master by using the commands

git checkout master
git branch -D sample-branch-name
git pull origin master