Moves slide about gitignore
This commit is contained in:
parent
438d357489
commit
ed5b4c7949
1 changed files with 32 additions and 32 deletions
64
main.latex
64
main.latex
|
@ -582,38 +582,6 @@ can really help.
|
||||||
}
|
}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\begin{frame}[fragile]
|
|
||||||
\frametitle{.gitignore}
|
|
||||||
This file tells git which files not to track.
|
|
||||||
\begin{minted}{bash}
|
|
||||||
*.log
|
|
||||||
*.doc
|
|
||||||
*.pem
|
|
||||||
*.docx
|
|
||||||
*.jpg
|
|
||||||
*.jpeg
|
|
||||||
*.pdf
|
|
||||||
*.png
|
|
||||||
.DS_Store/
|
|
||||||
*.min.css
|
|
||||||
*.min.js
|
|
||||||
dist/
|
|
||||||
\end{minted}
|
|
||||||
|
|
||||||
\note{%
|
|
||||||
This will not stop git tracking a file if it's already being tracked.
|
|
||||||
|
|
||||||
If you start tracking large binary files, git isn't going to be able to compress them. This
|
|
||||||
will result in a massive repo and a headache for everyone. If at all possible, don't track
|
|
||||||
large files, especially if they are going to be changed. Remember, git stores each version
|
|
||||||
of each file. With text, this is fine as it can be compressed efficiently. If it's not text,
|
|
||||||
it can't.
|
|
||||||
|
|
||||||
You should probably also try to avoid including minified files as git won't be able to merge
|
|
||||||
them automatically.
|
|
||||||
}
|
|
||||||
\end{frame}
|
|
||||||
|
|
||||||
\begin{frame}[fragile]
|
\begin{frame}[fragile]
|
||||||
\frametitle{Diff}
|
\frametitle{Diff}
|
||||||
\begin{minted}{bash}
|
\begin{minted}{bash}
|
||||||
|
@ -675,6 +643,38 @@ can really help.
|
||||||
}
|
}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[fragile]
|
||||||
|
\frametitle{.gitignore}
|
||||||
|
This file tells git which files not to track.
|
||||||
|
\begin{minted}{bash}
|
||||||
|
*.log
|
||||||
|
*.doc
|
||||||
|
*.pem
|
||||||
|
*.docx
|
||||||
|
*.jpg
|
||||||
|
*.jpeg
|
||||||
|
*.pdf
|
||||||
|
*.png
|
||||||
|
.DS_Store/
|
||||||
|
*.min.css
|
||||||
|
*.min.js
|
||||||
|
dist/
|
||||||
|
\end{minted}
|
||||||
|
|
||||||
|
\note{%
|
||||||
|
This will not stop git tracking a file if it's already being tracked.
|
||||||
|
|
||||||
|
If you start tracking large binary files, git isn't going to be able to compress them. This
|
||||||
|
will result in a massive repo and a headache for everyone. If at all possible, don't track
|
||||||
|
large files, especially if they are going to be changed. Remember, git stores each version
|
||||||
|
of each file. With text, this is fine as it can be compressed efficiently. If it's not text,
|
||||||
|
it can't.
|
||||||
|
|
||||||
|
You should probably also try to avoid including minified files as git won't be able to merge
|
||||||
|
them automatically.
|
||||||
|
}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
\begin{frame}
|
\begin{frame}
|
||||||
\frametitle{References}
|
\frametitle{References}
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue