-
Notifications
You must be signed in to change notification settings - Fork 0
Home
ManelMCCS edited this page Sep 7, 2022
·
9 revisions
Welcome to the nemo wiki!
Software:
- PlatformIO project:ss
- Bluetooth app:ss
- Open CV: ss
Hardware:
- Circuit *??
- Learn how to use the git workflow first(more about git workflow).
- Create new branches for new features (more about git workflow).
- Check the README.md file for which project part.
- git issues
- Get the code lastest version
git checkout master (go to the main branch)
git fetch origin (download objects and refs from the repo)
git reset origin (reset the branch to origin)
- Create new feature
git checkout -b new_feature
- Update, commit and push
git status
git add <some-file>
git commit
git push -u origin new_feature
git config --global credential.credentialStore gpg
More about Git Credential Manager
- Pull request
- In the "Branch" menu, choose the branch that contains your commits.
- Above the list of files, click Pull request.
- Use the base branch dropdown menu to select the branch you'd like to merge your changes into, then use the compare branch drop-down menu to choose the topic branch you made your changes in. Type a title and description for your pull request.
https://github.com/P33a/RobotAtFactoryLite
Software Hardware