Tool to allow developers to collaborate on open source and private projects
cd group-collaboration folder
npm install
cd group-collaboration
npm start
or
yarn start
- Fork the repo so you have your own copy to work off of.
- Clone your forked copy (So will have you user name in the clone link)
- Add an upstream to the shared repo:
git remote add upstream https://github.com/webdevatlanta/GroupCollaborationTool.git
- Always start off fresh when working on a repo:
get checkout master
git fetch --all
git pull upstream master
- Create a feature branch based off master:
git checkout -B my_feature_branch_name_here
- Do you work on your feature branch
- Add, commit, and push your feature branch to your Github:
git add .
git commit -m "My new feature I made"
git push origin my_feature_branch_name_here
- Go to your forked repo on github and create a pull request from your feature branch to master