- http://book.git-scm.com
- http://git-scm.com/book/
- http://www.sbf5.com/~cduan/technical/git/
- http://nvie.com/posts/a-successful-git-branching-model/http://nvie.com/…./a-successful-git-branching-model
- http://www.eclipse.org/jgit/
- http://eclipse.org/egit/
- http://gitref.org/
- https://about.gitlab.com/2018/08/08/git-happens/
- Logs / Histórico
- Estatisticas
- Provedores
- github
- https://help.github.com/articles/keeping-your-email-address-private/https://help.github.com/….
- http://ghtorrent.org/
- permite fazer queries utilizando a api do github
- YouTube Como Personalizar o seu perfil no Github⇓ ⇗
- github
- gitlab
- gitfarm
- https://codeplane.com/
- Compartilhando
- http://www.jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository/http://www.jedi.be/….
- git-daemon
- http://kaeso.wordpress.com/2008/02/02/git-repository-with-apache-via-webdav-and-gitweb/http://kaeso.wordpress.com/….
- https://git.wiki.kernel.org/articles/g/i/t/Gitweb.htmlhttps://git.wiki.kernel.org/…./Gitweb.html
- http://wiki.veiga.eti.br/index.php/Instala%C3%A7%C3%A3o_de_Servidor_Git_sobre_WebDAV_e_gitweb_no_Fedorahttp://wiki.veiga.eti.br/….
- http://git-blame.blogspot.com/2012/01/using-signed-tag-in-pull-requests.htmlhttp://git-blame.blogspot.com/….
- Hooks
- Resincronizando fork com repositorio original
- git remote
- git merge
- https://help.github.com/articles/syncing-a-fork/
- Senhas
- credential-helper
- https://github.com/lastpass/lastpass-cli/blob/master/contrib/examples/git-credential-lastpasshttps://github.com/…./git-credential-lastpass
- Multiplos helpers podem ser definidos e são utilizados em sequencia
- Migrando
- Processo básico de utilização do subversion
graph TD; clone[git clone]-->working_copy; subgraph trabalho_local; working_copy-->mudanças_locais; working_copy-->novos_arquivos; novos_arquivos-->add[git add]; add-->working_copy; mudanças_locais-->commit[git commit]; commit-->working_copy; mudanças_locais-->diff[git diff]; diff-->working_copy; end subgraph trabalhos_da_equipe; working_copy--envia para servidor-->push[git push]; push-->working_copy; working_copy-->pull[git pull]; pull-- baixa do servidor -->working_copy; pull-- baixa do servidor -->conflitos; conflitos-->merge; merge-->working_copy; end