Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# SC2006 Project 1) git checkout dev & git branch (ensure you are in dev branch) 3) git pull origin dev (fetch the newest version of dev branch) 2) git branch new_branch (create branch) 3) git checkout new_branch (switch to new branch) 4) git add FILENAME1 FILENAME2 etc. (git add . to add everything) 5) git commit -m "enter a useful commit message here" 6) git pull --rebase origin dev (fetches newest version of dev branch and updates your feature branch without affecting your work) 5) git push origin new_branch