El tiempo
September 2010 M T W T F S S « Aug 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Acceso
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
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