Yo les Noobs, c'est ici que cela se passe ! 👊
$ git remote add user [email protected]:user/repo.git
$ git fetch user
$ git checkout -b user-branchName remotes/user/repo
Sample:
$ git remote add remiii [email protected]:Remiii/mydotfiles.git
$ git fetch remiii
$ git checkout -b remiii-master remotes/remiii/master
More details here:
$ git checkout user-branchName
$ git pull
$ git checkout yourBranch
$ git merge user-branchName
$ composer install
$ php app/console doctrine:schema:update --force
$ php app/console assets:install
$ sudo ./cacheClear.sh
Sample:
$ git checkout remiii-development
$ git pull
$ git checkout development
$ git merge remiii-development
$ composer install
$ php app/console doctrine:schema:update --force
$ php app/console assets:install
$ sudo ./cacheClear.sh