-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgit-basics.tex
More file actions
74 lines (55 loc) · 1.47 KB
/
git-basics.tex
File metadata and controls
74 lines (55 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
\documentclass[11pt]{beamer}
\usepackage[utf8x]{inputenc}
\usepackage{multirow}
\usepackage{adjustbox}
\usepackage{hyperref}
\usepackage{tikz}
\usetikzlibrary{arrows, backgrounds, positioning, fit, matrix}
\usepackage{gitdags}
\usepackage{color}
\usepackage{listings}
\input{theme/theme}
\newcommand\Small{\fontsize{8}{8.0}\selectfont}
\newcommand*\LSTfont{\Small\ttfamily}
\definecolor{mygreen}{rgb}{0,0.6,0}
\definecolor{mygray}{gray}{0.95}
\lstset{
language=sh,
basicstyle=\LSTfont,
backgroundcolor=\color{mygray},
showspaces=false,
showstringspaces=false,
showtabs=false,
frame=single,
rulecolor=\color{black},
tabsize=4,
breaklines=true,
keywordstyle=\color{blue},
commentstyle=\color{darkgray},
stringstyle=\color{orange}
}
\date{11. Mai 2017}
\institute[ZIH TUD]{Zentrum f\"{u}r Informationsdienste und Hochleistungsrechnen -- TU Dresden}
\title[LCTP]{Introduction into Git}
\author[Oeste]{Sebastian~Oeste}
\room{FAL 011}
\address{Chemnitzer Strasse 50}
\city{01069 Dresden}
\phone{+49 0351 - 463 32405}
\email{sebastian.oeste@tu-dresden.de}
\date{\today}
\setbeamercovered{transparent}
\begin{document}
\zihmaketitle
%\begin{frame}{Table of Contents}
%\tableofcontents
%\end{frame}
\input{content/whatsgit.tex}
\input{content/intro.tex}
\input{content/basic-usage.tex}
\input{content/branching.tex}
%\input{content/useful.tex}
\input{content/pitfalls.tex}
\input{content/appendix.tex}
\input{content/end.tex}
\end{document}