Work Protocol

Before you start, you want to make sure your on sungho_branch:

git branch -v

Now, make sure your branch is up to date to main branch

git pull origin main

commit changes made first:

git add .

git commit -m “message here”

pull all other changes from main made by others:

git pull origin main

git pull origin sungho_branch (only in case you know that your branch has changes you don’t have locally)

git push origin sungho_branch


Testing Other’s Code (by Leonardo)

Do a git fetch so get any changes made

Here is a good idea to test some one else's branch. Make a new branch:

git branch test-feature

Go into that branch:

git checkout test-feature

PLEASE DO THIS in test-feature