Git… tanto que há para dizer sobre o git
Wednesday, December 14th, 2011Operações local/remoto Obter muita informação sobre os branches locais e remotos: git remote show <origin-ou-outro-remote> Para fazer prune (apagar branches que já foram removidos no repositório) (usar a flag --dry-run para simular antes de apagar): git remote prune <origin-ou-outro-remote> Enviar um branch criado localmente (-u para manter track entre branch local e remoto): git push -u ...