-
Notifications
You must be signed in to change notification settings - Fork 125
Simplified Git Workflow for Team Members
Reinhard Budde edited this page Sep 16, 2025
·
2 revisions
| Command | Description |
|---|---|
| git clone https://github.com/OpenRoberta/openroberta-lab.git | get the repository for the first time |
| git checkout develop | get the work of the other developers ... |
| git checkout -b myFeature | create a feature branch and start working with it. |
| git status | list all files, that you created, modified or deleted |
| git add --all | add all your changes for committing them. |
| git commit -m "reasonable message" | commit into your local feature branch. coding, adding, committing may happen many times. All changes are local. |
| ! | now everything is committed, the work is done, others should take advantage of your work |
| git checkout develop; git pull | you need to know, what others have done since your branch diverged from develop. Thus: get their work ... |
| git checkout myFeature | you have to check, whether work of others conflicts with your work |
| git rebase develop | this is the crucial part. Read about the need of rebasing! We assume, that the rebase finished successfully. Run all unit tests. If errors pop up, you have to solve conflicts. If you are a beginner, get help! |
| git checkout develop ; git merge myFeature | Hurry to checkout develop and merge your changes. If the rebase terminated with "fast forward", there should be no problem. The merge will terminate with "fast forward", too. |
| git push | push it to the remote repository |
| git branch -d myFeature | delete your feature branch, but you can continue to work with it. Don't care. Your work is saved in "develop". |
Home | Community | Installation | Team 
Installation Tutorials
- Instructions to run a openroberta lab server using DOCKER
- Instructions to run the Open Roberta Lab Server natively on ubuntu ‐ not recommended
- Raspberry Pi 2/3/4 and the Open Roberta Lab
- EV3 and leJOS
- EV3 and ev3dev
- Creating the OR leJOS image
- Arduino Create Agent
- Mbed DAL: Generation and automation
Development
-
Workflows
-
Architecture
-
Blockly
-
Software engineering issues
-
Misc
-
Notes on robots
Textual Representation
Contribution
Discussions on future development