This is a repository for the Advanced Unreal Engine course
Getting Started...
Cloning the repo:
git clone https://github.com/shachash1984/Tiltan_UnrealEngineCourse.git
Switching to your own branch:
git branch Student_MitchRichmond
git checkout Student_MitchRichmond
RECEIVING UPDATES:
- Finding out the branch you are currently on:
git status
1.1 If you are NOT on "main" switch back to it (make sure there are no uncommitted changes)
git checkout main
- Getting the changes:
git pull
- Switch back to your own branch
git checkout Student_MitchRichmond
- Merging the changes to your own branch:
git merge main
Working... Working... Working...
***SUBMITTING WORK: ***
- Make sure you are on your own branch
git status
- Add the changes you want ("." means current dir, and if you use it from the root folder it will add all changes)
git add .
- Commit the changes:
git commit -m "Finished class project 1"
- Upload the changes to github:
git push origin Student_MitchRichmond