-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.tex
More file actions
119 lines (92 loc) · 3.01 KB
/
Copy pathpresentation.tex
File metadata and controls
119 lines (92 loc) · 3.01 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
\documentclass[aspectratio=169,xcolor=table]{beamer}
\usetheme{metropolis}
\usepackage[spanish]{babel}
\usepackage{tikz}
\usetikzlibrary{chains}
\usetikzlibrary{trees}
\usepackage{minted}
\setminted{ style=colorful, fontsize=\small, breaklines}
\usepackage{xcolor-solarized}
\usepackage{fontawesome}
\usepackage{gitdags}
\usepackage{graphicx}
\usepackage{animate}
\newcommand{\twitter}{\href{https://twitter.com/carlosgllp}{\faTwitter\ carlosgllp}}
\newcommand{\github}{\href{https://www.github.com/gpcarlos}{\faGithub\ gpcarlos}}
\newcommand{\warnning}{{\color{solarized-red}\faWarning}}
\title{Taller de Git}
\subtitle{Avanzado}
\author{Carlos Gallardo Polanco \\ \twitter \\ \github}
\institute{Escuela Superior de Ingeniería}
\date{22 de mayo de 2018}
\subject{Actividad Científico-Técnica}
\keywords{ESI, UCA, Git, GitHub, LaTeX}
\definecolor{fafafa}{rgb}{0.98, 0.98, 0.98}
\newcommand{\whiteTitle}{
\title{\color{fafafa}Taller de Git}
\subtitle{\color{fafafa}Avanzado}
\author{\color{fafafa}Carlos Gallardo Polanco \\ \twitter \\ \github}
\institute{\color{fafafa}Escuela Superior de Ingeniería}
\date{\color{fafafa}22 de mayo de 2018}
}
% ================================================
% ================================================
% ================================================
\begin{document}
\begin{frame}
\maketitle
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east,inner sep=40pt] at (current page.north east) {\includegraphics[scale=0.065]{images/logoGit.png}};
\node[anchor=south east,inner sep=40pt] at (current page.south east) {\includegraphics[scale=0.3]{images/logoUCA.eps}};
\end{tikzpicture}
\end{frame}
% Introducción
\input{sections/introduction}
% Conceptos básicos
\input{sections/basicConcepts}
% Ver el historial
\input{sections/log}
% Comprobar cambio
\input{sections/diff}
% Volver atrás en el historial
\input{sections/unstage}
% Crear ramas y moverse entre ramas
\input{sections/branch}
% Fusionar ramas
\input{sections/merge}
% Gestionar ramas
\input{sections/manageBranches}
% Reorganizar ramas
\input{sections/rebase}
% Remotos (pull y push)
\input{sections/remote}
% Guardado rápido
\input{sections/stash}
% Etiquetas
\input{sections/tags}
% gitignore
\input{sections/gitignore}
% Configuración
\input{sections/config}
% Utilización de SSH en GitHub
\input{sections/sshGithub}
% TODO Montar un servidor (Gitlab)
% \input{sections/gitlab}
% githubEducation
\input{sections/githubEducation}
% GitStats y Gource
\input{sections/stats}
\begin{frame}{Bibliografía}
\nocite{*}
\bibliography{bibliography}
\bibliographystyle{plain}
\end{frame}
\begin{frame}[standout]
\whiteTitle
\maketitle
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east,inner sep=40pt] at (current page.north east) {\includegraphics[scale=0.27]{images/logoGitw.png}};
\node[anchor=south east,inner sep=40pt] at (current page.south east) {\includegraphics[scale=0.3]{images/logoUCAw.png}};
\end{tikzpicture}
\end{frame}
\end{document}