From 37e7f3d2aff03cb0ee3738a668ea68f8050875b9 Mon Sep 17 00:00:00 2001 From: Josh Ashton Date: Tue, 4 Mar 2025 19:00:21 -0700 Subject: [PATCH] added git to installation --- setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 8361ede..1ff7aaf 100644 --- a/setup.sh +++ b/setup.sh @@ -18,6 +18,8 @@ echo \ sudo apt update && sudo apt upgrade; # Install some basic applications and utilities. +# - git: A version control software, the underlying piece which most projects are built with. +# # - tldr: a helpful and concise utility for explaining commands, with examples. # # - tmux: a terminal multiplexer, allowing you to have multiple panes of a terminal @@ -28,7 +30,7 @@ sudo apt update && sudo apt upgrade; # - cloudflared: a utility used to securely expose processes to the internet. # # - docker: a utility used for quickly, easily, and securely deploying pre-built applications. -sudo apt install tldr tmux neovim cloudflared docker; +sudo apt install git tldr tmux neovim cloudflared docker; # Systemctl is a tool used to manage underlying system processes, called daemons. Enable will start the docker # daemon at startup, and start starts the daemon now.