From 7268778f14374f35fa9aaf666f33de094b62a850 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sat, 7 Jan 2023 03:07:09 -0500 Subject: [PATCH] Update pull.sh --- pull.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pull.sh b/pull.sh index 0d1a1a1..f4f8c78 100644 --- a/pull.sh +++ b/pull.sh @@ -1,8 +1,8 @@ #!/bin/bash if [ -d ~/git/dotfiles ] ; then - (git config --global user.email "matt@nelim.org" - git config --global user.name "matt1432" + (git config --global user.email "matt@nelim.org" && + git config --global user.name "matt1432" && cd ~/git/dotfiles && git config pull.rebase false && - git pull) # test if work + git pull) fi