To get the repository / project:
$ git clone https://github.com/CPPHyperloop/cpphyperloop.git
Always pull before starting your work:
[REPOSITORY_DIRECTORY]$ git pull
Check for untracked / unsynched files:
[REPOSITORY_DIRECTORY]$ git status
Add file to be ready to commit:
[REPOSITORY_DIRECTORY]$ git add [FILE_NAME.ext]
Add all changed files at the same time
[REPOSITORY_DIRECTORY]$ git add -A
Commit all files that are ready. Please include a message describing the change:
[REPOSITORY_DIRECTORY]$ git commit -m "message" If a longer message is required: [REPOSITORY_DIRECTORY]$ git commit
Change / update the repository:
>[REPOSITORY_DIRECTORY]$ git push