--- /dev/null
+*.vrb
+*.aux
+*.fmt
+*.bbl
+*.blg
+*.log
+*.out
+*.toc
+*.nav
+*.snm
+*.pdf
+vc.tex
+_minted*
--- /dev/null
+LATEX:=pdflatex
+TEXFLAGS:=-shell-escape
+DOCUMENT:=git
+
+.PHONY: clean
+.SECONDARY: $(DOCUMENT).fmt
+
+all: $(DOCUMENT).pdf
+
+vc.tex: .git/logs/HEAD
+ git log -1 --format="format:\\gdef\\GITAbrHash{%H}" > $@
+
+%.pdf: %.tex %.fmt
+ $(LATEX) $(TEXFLAGS) $<
+ $(LATEX) $(TEXFLAGS) $<
+
+%.fmt: pre.tex vc.tex
+ $(LATEX) $(TEXFLAGS) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump"
+
+
+clean:
+ $(RM) -vr $(addprefix *.,vrb aux fmt bbl blg log out toc nav snm pdf)\
+ _minted*
--- /dev/null
+%&git
+\begin{document}
+\begin{frame}
+ \titlepage
+\end{frame}
+
+\section{What is GIT}
+\begin{frame}
+ \frametitle{Who am I?}
+ \begin{itemize}
+ \item Mart Lubbers
+ \item 4th year bachelor AI
+ \item \url{https://github.com/dopefishh/gitflashtalk}
+ \item SHA of the commit of this presentation:
+ {\tiny\GITAbrHash}
+ \end{itemize}
+\end{frame}
+
+\section{Introduction}
+
+\section{Local}
+
+\section{Remote}
+
+\section{Conclusion}
+
+\end{document}
--- /dev/null
+\documentclass{beamer}
+
+\usepackage[tone,safe]{tipa}
+\usepackage{minted}
+\usepackage{graphicx}
+
+\usecolortheme{dove}
+\usetheme{Singapore}
+
+\title[Git]{Version control with Git}
+\author[Lubbers]{M.~Lubbers~\inst{1}}
+\institute[Radboud University]{%
+ \inst{1}%
+ Computing Science: Software Science\\
+ Radboud University Nijmegen
+}
+\date[2015]{\today}
+\subject{Git}
+
+\input{vc.tex}
+
+\graphicspath{{./img/}}
+
+\setminted{%
+}
+
+\AtBeginSection[]{%
+ \begin{frame}
+ \frametitle{Table of Contents}
+ \tableofcontents[currentsection]
+ \end{frame}
+}