UPDATE
git pull
make new local branch:
git checkout -b [name]
CHANGES
make changes, then add all:
git add .
commit:
git commit -m "comment"
push changes and create new branch:
git push
TO GET THE LATEST VERSION
git checkout master git pull git checkout [USER] git rebase master
Step 1. Fetch and check out the branch for this merge request
git fetch origin git checkout -b [USER] origin/[USER]
Step 2. Review the changes locally
Step 3. Merge the branch and fix any conflicts that come up
git fetch origin git checkout origin/master git merge --no-ff [USER]
Step 4. Push the result of the merge to GitLab
git push origin master
(In this case [USER] is foxsan. And you are not him.)