GIT ;)
Configurações
Salvar crendencias
vps:~# git config --global credential.helper store
Setar permissão de execução no arquivo e commitar
vps:~# git update-index --skip-worktree --chmod=+x pull-env-build-deploy.sh
Tips
GIT reduzir tamanho do repositório
$ rm .git
$ git init
$ git remote add origin git@bitbucket.org:celestinocortez/sdtm-site.git
$ git add .
$ git commit -m 'FIX reduzindo tamanho do repositório'
$ git push -f origin master
$ git pull origin master --allow-unrelated-histories
$ git reset --hard origin/master