Add structure of material and content drafts on Git and RSE
This commit is contained in:
BIN
material/2_tue/git/figs/history_linear/fig.png
Normal file
BIN
material/2_tue/git/figs/history_linear/fig.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
22
material/2_tue/git/figs/history_linear/fig.tex
Normal file
22
material/2_tue/git/figs/history_linear/fig.tex
Normal file
@@ -0,0 +1,22 @@
|
||||
% build with: pdflatex --shell-escape fig.tex
|
||||
\documentclass[tikz, convert={density=800}]{standalone}
|
||||
|
||||
\usepackage{tikz}
|
||||
\definecolor{myBlue}{HTML}{42affa}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
|
||||
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
|
||||
\tikzstyle{B}=[text=myBlue, font=\LARGE]
|
||||
|
||||
\node[C] at (0,1) (A) {\texttt{A}};
|
||||
\node[C] at (3,1) (B) {\texttt{B}};
|
||||
\node[C] at (6,1) (C) {\texttt{C}};
|
||||
|
||||
\draw [<-] (A) to (B);
|
||||
\draw [<-] (B) to (C);
|
||||
|
||||
\node[B] at (-3,1) {\texttt{main}};
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
||||
BIN
material/2_tue/git/figs/history_merge/fig.png
Normal file
BIN
material/2_tue/git/figs/history_merge/fig.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
34
material/2_tue/git/figs/history_merge/fig.tex
Normal file
34
material/2_tue/git/figs/history_merge/fig.tex
Normal file
@@ -0,0 +1,34 @@
|
||||
% build with: pdflatex --shell-escape fig.tex
|
||||
\documentclass[tikz, convert={density=800}]{standalone}
|
||||
|
||||
\usepackage{tikz}
|
||||
\definecolor{myOrange}{HTML}{ffa500}
|
||||
\definecolor{myBlue}{HTML}{42affa}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
|
||||
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
|
||||
\tikzstyle{M}=[circle,fill=myOrange,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
|
||||
\tikzstyle{B}=[text=myBlue, font=\LARGE]
|
||||
|
||||
\node[C] at (0,3) (A) {\texttt{A}};
|
||||
\node[C] at (3,3) (B) {\texttt{B}};
|
||||
\node[C] at (6,3) (C) {\texttt{C}};
|
||||
|
||||
\node[C] at (3,1) (D) {\texttt{D}};
|
||||
\node[C] at (6,1) (E) {\texttt{E}};
|
||||
|
||||
\node[M] at (9,3) (M) {\texttt{M}};
|
||||
|
||||
\draw [<-] (A) to (B);
|
||||
\draw [<-] (B) to (C);
|
||||
\draw [<-] (A) to (D);
|
||||
\draw [<-] (D) to (E);
|
||||
\draw [<-, myOrange] (C) to (M);
|
||||
\draw [<-, myOrange] (E) to (M);
|
||||
|
||||
\node[B] at (-3,3) {\texttt{main}};
|
||||
\node[B] at (-3,1) {\texttt{feature}};
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
||||
BIN
material/2_tue/git/figs/history_rebase/fig.png
Normal file
BIN
material/2_tue/git/figs/history_rebase/fig.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
30
material/2_tue/git/figs/history_rebase/fig.tex
Normal file
30
material/2_tue/git/figs/history_rebase/fig.tex
Normal file
@@ -0,0 +1,30 @@
|
||||
% build with: pdflatex --shell-escape fig.tex
|
||||
\documentclass[tikz, convert={density=800}]{standalone}
|
||||
|
||||
\usepackage{tikz}
|
||||
\definecolor{myOrange}{HTML}{ffa500}
|
||||
\definecolor{myBlue}{HTML}{42affa}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[>=latex, thick, shorten >=2pt, shorten <=2pt, ->, myBlue]
|
||||
\tikzstyle{C}=[circle,fill=myBlue,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
|
||||
\tikzstyle{M}=[circle,fill=myOrange,text=white,minimum size=30pt,inner sep=2pt, font=\LARGE]
|
||||
\tikzstyle{B}=[text=myBlue, font=\LARGE]
|
||||
|
||||
\node[C] at (0,3) (A) {\texttt{A}};
|
||||
\node[C] at (3,3) (B) {\texttt{B}};
|
||||
\node[C] at (6,3) (C) {\texttt{C}};
|
||||
|
||||
\node[C] at (9,1) (D) {\texttt{D'}};
|
||||
\node[C] at (12,1) (E) {\texttt{E'}};
|
||||
|
||||
\draw [<-] (A) to (B);
|
||||
\draw [<-] (B) to (C);
|
||||
\draw [<-] (C) to (D);
|
||||
\draw [<-] (D) to (E);
|
||||
|
||||
\node[B] at (-3,3) {\texttt{main}};
|
||||
\node[B] at (-3,1) {\texttt{feature}};
|
||||
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user