Skip to content

TheTraille18/GroupCollaborationTool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

GroupCollaborationTool

Tool to allow developers to collaborate on open source and private projects

Installing dependencies:

cd group-collaboration folder

npm install

Start the app:

cd group-collaboration
npm start

or

yarn start

Visit in browser:

http://localhost:3000

Contributing to this open source project

  1. Fork the repo so you have your own copy to work off of.
  2. Clone your forked copy (So will have you user name in the clone link)
  3. Add an upstream to the shared repo:
git remote add upstream https://github.com/webdevatlanta/GroupCollaborationTool.git
  1. Always start off fresh when working on a repo:
get checkout master
git fetch --all
git pull upstream master
  1. Create a feature branch based off master:
git checkout -B my_feature_branch_name_here
  1. Do you work on your feature branch
  2. 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
  1. Go to your forked repo on github and create a pull request from your feature branch to master

About

Tool to allow developers to collaborate on open source and private projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 72.3%
  • HTML 19.9%
  • CSS 7.8%