Mise en forme de la présentation sur git

This commit is contained in:
2015-06-29 14:16:46 +02:00
parent 41ef53be2e
commit 2825c2c32f
26 changed files with 999 additions and 0 deletions

View File

@ -0,0 +1,8 @@
\begin{frame}
\frametitle{Configurer git}
\framesubtitle{Une configuration souple}
\begin{itemize}
\item configuration globale
\item configuration par dépôt
\end{itemize}
\end{frame}

View File

@ -0,0 +1,9 @@
\begin{frame}
\frametitle{Configurer git}
\framesubtitle{Identifier l'utilisateur}
git associe à chaque commit des informations sur la personne ayant commité et sur la personne ayant mergé le commit.
\begin{itemize}
\item git config --global user.name "<nom d'utilisateur>"
\item git config --global user.email "<courriel>"
\end{itemize}
\end{frame}