For the development of your feature, follow the following steps:
- Run
git pullto ensure that you have the most up to date repo - Run
git pull origin <branch name>to fetch the branch you are supposed to be working on - Run
git branchto ensure that you are on the correct branch. If not, rungit checkout <branch name>so that you are on the correct branch - Implement your feature as a function (look for notes in the metrics document) in the appropriate directory
- Once you are done with your feature, you want to run
git add <files you want to save>followed bygit commit -m <message>to commit your changes. Then to update the remote, you want togit push