From c1b330189ee00bcba695b41f12d75aeba4126a7a Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Fri, 7 Aug 2020 13:21:01 +0100 Subject: [PATCH] Adds lfs and crypt to useful tools --- main.latex | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/main.latex b/main.latex index 4d44494..b9295c2 100644 --- a/main.latex +++ b/main.latex @@ -1129,6 +1129,34 @@ } \end{frame} +\begin{frame} + \frametitle{Useful supporting tools} + \framesubtitle{Git Crypt} + + For storing sensitive information in a git repository. + + \href{https://github.com/AGWA/git-crypt}{https://github.com/AGWA/git-crypt} + \note{% + This will encrypt files with gpg key(s) and transparently decrypt them on the file system. + } +\end{frame} + +\begin{frame} + \frametitle{Useful supporting tools} + \framesubtitle{Git Large File Storage} + + A solution to the issue of storing binary files + + \href{https://git-lfs.github.com/}{https://git-lfs.github.com/} + \note{% + As mentioned, git is not good at storing binary files because they can't be compressed or + diff-ed or merged. + + This allows you to store links to large files and transparently add them to the file system + as though they were normal git blobs. + } +\end{frame} + \begin{frame} \frametitle{Useful supporting tools} \framesubtitle{Bat}