- Navigate to your repository
$ git remote update$ git checkout -b <"bugfix" or "feature">/<name> origin/develop- Craft your amazing work of art with your favorite IDE/text editor.
- Type
makeand make sure the application builds successfully. $ git add <file or files that you changed>$ git commit -m "#<problemid> - <short text description>"$ git push -u origin HEAD- ...process for asking branch to be merged...
To work together with someone else on a remote branch:
- Navigate to your repo directory
$ git remote update$ git checkout -t origin/feature/foo- Edit the code with your changes
$ git add <file or files you changed>$ git commit -m "Short text message"$ git push