Quelques commandes git expliquées visuellement et dynamiquement
-
http://www.wei-wang.com/ExplainGitWithD3/Quelques trucs sympas, mais encore un peu avancés pour le moment
-
http://putaindecode.fr/posts/git/boutez-les-bugs-domptez-votre-historique/Tiens je ne connaissais pas du tout ce wrapper.. pratique, à tester
-
http://hub.github.com/Before you can start working locally on a remote branch, you need to fetch it as called out in answers below.
To fetch a branch, you simply need to:
git fetch origin
This will fetch all of the remote branches for you. With the remote branches in hand, you now need to check out the branch you are interested in, giving you a local working copy:
git checkout -b test origin/test
ou : git checkout -t origin/test
-
http://about:blankIgnorer un fichier versionné :
git update-index --assume-unchanged path/to/file.txt
-
https://help.github.com/articles/ignoring-filesDes workflow git pour l'intégration continue
-
https://www.google.fr/search?q=git+workflow+continuous+integrationWorkflow for continuous integration environments
-
https://www.atlassian.com/git/workflows#!workflow-feature-branchY'a rien à dire sur ce book, c'est clair, concis, bien schématisé. Je viens de me faire la partie sur les branches car je commence à en avoir besoin sur plusieurs projets comme Piclodio2
-
http://git-scm.com/docAfter doing a git fetch, do a git log HEAD..origin to show the log entries between your last common commit and the origin branch. To show the diffs, use either git log -p HEAD..origin to show each patch, or git diff HEAD...origin (three dots not two) to show a single diff.
-
http://stackoverflow.com/questions/180272/how-to-preview-git-pull-without-doing-fetchUn autre site avec plein d'article sur git
-
http://gitready.com/intermediate/2009/02/13/list-remote-branches.htmlGreat interactive cheatsheet
-
http://www.ndpsoftware.com/git-cheatsheet.htmlQuelques solutions pour backup un repo git
-
http://agile.dzone.com/articles/git-backups-and-no-its-not