From dfa6ed1f3cb2f41283ac708a1d44bb66af2cf0b8 Mon Sep 17 00:00:00 2001 From: Jannik ZANDER Date: Sun, 26 Jan 2020 21:07:08 +0100 Subject: [PATCH] Fix dotfiles.sh --- bin/dotfiles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dotfiles.sh b/bin/dotfiles.sh index c94ba5d..be977bd 100755 --- a/bin/dotfiles.sh +++ b/bin/dotfiles.sh @@ -3,13 +3,13 @@ # Define got (git-dotfiles) function function got() { - got --git-dir=$HOME/.dotfiles --work-tree=$HOME "$@" + git --git-dir=$HOME/.dotfiles --work-tree=$HOME "$@" } # Initial setup got init got config --local status.showUntrackedFiles no -got remote add origin git@zndr.dk:dotfiles +got remote add origin git@localhost:dotfiles got fetch got reset --hard origin/master got branch -u origin/master -- 2.43.0