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}

View File

@ -0,0 +1,4 @@
\begin{frame}
\frametitle{DVCS}
Système de gestion de version décentralisé
\end{frame}

View File

@ -0,0 +1,3 @@
\begin{frame}
\frametitle{exercice}
\end{frame}

View File

@ -0,0 +1,6 @@
\begin{frame}
\frametitle{Installer git sur les systèmes d'exploitation GNU/Linux}
\begin{itemize}
\item apt-get, dnf, emerge, pacman, zypper, \ldots{}
\end{itemize}
\end{frame}

View File

@ -0,0 +1,7 @@
\begin{frame}
\frametitle{Installer git sur les systèmes d'exploitation d'Apple}
\begin{itemize}
\item \url{http://git-scm.com/download/mac}
\item \url{https://mac.github.com/}
\end{itemize}
\end{frame}

View File

@ -0,0 +1,7 @@
\begin{frame}
\frametitle{Installer git sur les systèmes d'exploitation Microsoft}
\begin{itemize}
\item \url{http://git-scm.com/download/win}
\item \url{https://windows.github.com/}
\end{itemize}
\end{frame}

View File

@ -0,0 +1,8 @@
\begin{frame}
\frametitle{Git en un mot}
\begin{itemize}
\item projet créé en 2005
\item gère le code source du noyau linux
\item est multiplateforme
\end{itemize}
\end{frame}

View File

@ -0,0 +1,4 @@
\begin{frame}
\frametitle{Ce que sont les données pour git}
Un état du répertoire = un instantané de l'état des fichiers
\end{frame}