Branch: create new
git checkout -b featurebranch
Branch: checkout remote one
git checkout featurebranch
Branch: view all (remote and local)
git branch -a
Merge: develop in local branch
git merge develop
Merge: use my or others changes while merging
git checkout --theirs web/*
git checkout --ours web/index.html