Skip to content
ManelMCCS edited this page Sep 7, 2022 · 9 revisions

Welcome to the nemo wiki!

Nemo

Meetings

Project structure:

Software:

Hardware:

How to contribute:

Git workflow

  1. 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)
  1. Create new feature
git checkout -b new_feature
  1. Update, commit and push
git status
git add <some-file>
git commit
git push -u origin new_feature

Git crendential manager

git config --global credential.credentialStore gpg

More about Git Credential Manager

  1. 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.

TODO Tree

Useful links:

https://github.com/P33a/RobotAtFactoryLite

Software Hardware

Clone this wiki locally