From 63bf8abd2f2f57ef6cb5b22d906011f5f8c850d9 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 2 Jun 2015 00:06:31 -0700 Subject: [PATCH] exclude .git files on install --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ad9b882..57b6979 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,5 @@ git pull origin master; -rsync --exclude ".git/" --exclude "install.sh" -avhE --no-perms . ~; +rsync --exclude ".git/" --exclude "install.sh" --exclude ".git*" -avhE --no-perms . ~; source ~/.bashrc