Tag Archives: git

Git workflow

ejemplo sacado de aqui Obtener un repo git clone git://github.com/bard/sameplace.git Crear una rama git checkout fix_for_foobar Haciendo commits locales git commit -a -m ‘Join Room Dialog: foobar functionality was broken. Fixed.’ git push origin fix_foo_foobar Unificando en master git checkout … Continue reading

Posted in linux | Tagged | Leave a comment

Git hints

Cosas para configurar git correctamente $ git config –global user.illanos "Manuel Gomar" $ git config –global user.email "illanos@gmail" Ahora para que coloree los branches en el ~/.bashrc al final añadimos function current_branch { x=$(git branch 2> /dev/null | grep ^* | … Continue reading

Posted in Personal | Tagged | Leave a comment