Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
robotics_ss25
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
olhas98
robotics_ss25
Commits
2a241731
Commit
2a241731
authored
2 months ago
by
olhas98
Browse files
Options
Downloads
Patches
Plain Diff
Edit README.md
parent
ce22a9c6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+62
-3
62 additions, 3 deletions
README.md
with
62 additions
and
3 deletions
README.md
+
62
−
3
View file @
2a241731
#
robotics_ss25
#
Repository of Robotics course
Authors: To be done.
### A collection of solutions for assignments
A collection of solutions for the assignments.
## Authors:
-
Rebecca Ebert
-
Xenia Krotov
-
Olha Solodovnyk
## Working with our Repository
### Setup
1.
Install git (mandatory)
2.
Install VS Code (for ease of use)
3.
Clone the repository use
`git clone`
### Usage
1.
Sync with main
```
git checkout main
git pull origin main
```
2.
Create a new branch
```
git checkout -b name-of-your-branch
```
3.
Write your code on this branch
Keep Code small for reviewers(100 - 200 lines)
4.
Stage changes & commit
```
git add .
git commit -m "Description of changes"
```
5.
Push the changes
```
git push origin your-branch-name
```
6.
Open a Pull Request
1.
Go to GitHub
2.
Click "Compare & Pull Request"
3.
Summarize Your Changes
4.
Reqeust at least one reviewer
7.
Wait for Approval
8.
Merge (Squash & Merge)
9.
Delete old branch
with a button in GitHub
like this locally:
```
git checkout main
git branch -d name-of-your-branch
```
10.
Sync Regularly
```
git checkout main
git pull origin main
git checkout your-branch
git merge main
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment