venerdì 24 luglio 2015

Branch on Git

Per scaricare in locale un branch remoto:

git fetch origin branchName
git checkout branchName


Per fare Merge dal master al branch attuale:

git pull
git merge origin master