Quelques commandes git expliquées visuellement et dynamiquement
Quelques trucs sympas, mais encore un peu avancés pour le moment
Tiens je ne connaissais pas du tout ce wrapper.. pratique, à tester
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
Ignorer un fichier versionné :
git update-index --assume-unchanged path/to/file.txt
Des workflow git pour l'intégration continue
Workflow for continuous integration environments
Y'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
After 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.
Un autre site avec plein d'article sur git
Great interactive cheatsheet
Quelques solutions pour backup un repo git