background preloader

Git

Facebook Twitter

Version Control Best Practices. Commit Related Changes A commit should be a wrapper for related changes.

Version Control Best Practices

For example, fixing two different bugs should produce two separate commits. Faire son premier commit. Gérez vos codes source avec Git. Framaboard. Git - petit guide - no deep shit! Git - petit guide juste un petit guide pour bien démarrer avec git. no deep shit ;) par Roger Dudler (translation by KokaKiwi) Remerciements à @tfnico, @fhd, Namics this guide in english, deutsch, español, indonesian, italiano, nederlands, polski, português, русский, türkçe, မြန်မာ, 日本語, 中文, 한국어 installation Télécharger git pour Mac OSX.

git - petit guide - no deep shit!

Git Workflows and Tutorials. The array of possible workflows can make it hard to know where to begin when implementing Git in the workplace.

Git Workflows and Tutorials

This page provides a starting point by surveying the most common Git workflows for enterprise teams. As you read through, remember that these workflows are designed to be guidelines rather than concrete rules. We want to show you what’s possible, so you can mix and match aspects from different workflows to suit your individual needs. Centralized Workflow Transitioning to a distributed version control system may seem like a daunting task, but you don’t have to change your existing workflow to take advantage of Git. Planning poker. Un article de Wikipédia, l'encyclopédie libre.

Planning poker

Utilisation[modifier | modifier le code] Cartes imprimées pour jouer au planning poker. L'avantage principal du planning poker est de permettre à tous de s'exprimer librement. Git Reference. We've already seen how to use git log to compare branches, by looking at the commits on one branch that are not reachable from another.

Git Reference

(If you don't remember, it looks like this: git log branchA ^branchB). However, you can also use git log to look for specific commits. Here we'll be looking at some of the more commonly used git log options, but there are many. Take a look at the official docs for the whole list. git log --author look for only commits from a specific author.