Loading README.md +13 −0 Original line number Diff line number Diff line Loading @@ -36,6 +36,19 @@ git pull origin main 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 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 Loading Loading
README.md +13 −0 Original line number Diff line number Diff line Loading @@ -36,6 +36,19 @@ git pull origin main 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 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 Loading