summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/git-in-reverse.tex19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/git-in-reverse.tex b/src/git-in-reverse.tex
index 1d461c5..1dba45c 100644
--- a/src/git-in-reverse.tex
+++ b/src/git-in-reverse.tex
@@ -152,15 +152,6 @@ What does Git store?
\end{frame}
\section{Git± Plumbing}
-\subsection{Blobs}
-\begin{frame}
-\frametitle{Git Objects}
-\begin{itemize}
-\item{ZLIB compressed blob}
-\item{Dumb containers, storing provided content}
-\item{Created using the \texttt{git-hash-object} plumbing command}
-\end{itemize}
-\end{frame}
\begin{frame}[fragile]
\frametitle{Initializing a Repository the Hard Way}
@@ -172,6 +163,16 @@ What does Git store?
\lstinputlisting{code/1/2}
\end{frame}
+\subsection{Blobs}
+\begin{frame}
+\frametitle{Git Objects}
+\begin{itemize}
+\item{ZLIB compressed blob}
+\item{Dumb containers, storing provided content}
+\item{Created using the \texttt{git-hash-object} plumbing command}
+\end{itemize}
+\end{frame}
+
\begin{frame}[fragile]
\frametitle{\texttt{git-hash-object}}
\lstinputlisting{code/1/3}