Commit a259fb1f authored by Jakub Čecháček's avatar Jakub Čecháček
Browse files

Updated commit info

parent e7c7d344
Loading
Loading
Loading
Loading
+13 −0
Original line number Original line Diff line number Diff line
@@ -36,6 +36,19 @@ git pull origin main
git next pb162 iteration-xy                                                         # get assignment for iterarion XY
git next pb162 iteration-xy                                                         # get assignment for iterarion XY
git push origin main                                                                # push the assignment into  origin main assignment into  origin main 
git push origin main                                                                # push the assignment into  origin main assignment into  origin main 
git switch -c iteration-xy-impl                                                     # create new branch for implementation 
git switch -c iteration-xy-impl                                                     # create new branch for implementation 

# After you are done with your work for the time
git status                                                                          # review which files are chnaged 
git add .                                                                           # prepare all changed and niew files in current directory for commit
git commit -m "Work on interation-xy"                                               # commit the changes, use meaningful message!
git push origin iteration-xy-impl                                                   # push the branch with solution to your remote repository (origin)


# If you want to resume your work on another comupter (first two steps are needed only once per machine)
git status                                                                          # check current branch, status shoudl be clean
git fetch origin                                                                    # fetch branch info from your remote repository (origin)
git switch iteration-xy-impl                                                        # switch to implementation branch

```
```


## Seminar Activities
## Seminar Activities