From ecef07ec81498877f5ef97f389c0eacfaba1ec04 Mon Sep 17 00:00:00 2001 From: Randy Jordan Date: Sun, 3 Nov 2024 14:45:15 -0600 Subject: [PATCH] Updated guide --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bcbd274..18ffc12 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ If you're starting out as root, do not login as user until you've altered /etc/x Once complete, assign the appropriate privileges, and login as the user. Run the command: `git init --bare $HOME/.dot` To create our config folder.
-`alias config='/usr/bin/git --git-dir=$HOME/.dot/ --work-tree=$HOME' To set an alias to interact with our config.
+`alias config='/usr/bin/git --git-dir=$HOME/.dot/ --work-tree=$HOME` To set an alias to interact with our config.
`config config --local status.showUntrackedFiles no` So every file in $HOME is not tracked, just the ones we add.
`echo "alias config='/usr/bin/git --git-dir=$HOME/.dot/ --work-tree=$HOME'" >> $HOME/.bashrc` Adds the alias to our bashrc.