git branchgit branch -avgit checkoutgit checkout -bgit checkout -b destination-BranchName sourceBranchName
How to keep a feature branch in sync with it’s parent branch
git checkout develop
git pull
git checkout feature/foo
git merge develop
git push
orgit checkout feature/foo
git pull --all
git rebase develop