Skip to content

Git commands

goldpot edited this page Jun 4, 2020 · 1 revision

git commands

on master branch git fetch --> will fetch all branches

on master branch --> git branch --track feature/i18n origin/feature/i18n

Branch 'feature/i18n' set up to track remote branch 'feature/i18n' from 'origin'.

on master branch --> git checkout feature/i18n Switched to branch 'feature/i18n' Your branch is up to date with 'origin/feature/i18n'.

Clone this wiki locally