]> git.zndr.dk Git - dotfiles.git/commitdiff
Fix dotfiles.sh
authorJannik ZANDER <jannikz@gmail.com>
Sat, 22 Sep 2018 07:28:49 +0000 (09:28 +0200)
committerJannik ZANDER <jannikz@gmail.com>
Sat, 22 Sep 2018 07:31:24 +0000 (09:31 +0200)
README.md
bin/dotfiles.sh

index 4896219ffdb4ec1a9a71727f21c192b144822425..bab71a7b6cd96f5ebdf6085ad36decc9f4d09735 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
 # dotfiles
 
-1) First download 'dit-init.sh'
+1) First download 'dotfiles.sh'
 
->     $ git archive --remote=git@jaza.me:jaz/dit.git master bin/dit-init.sh | tar -x --strip-components 1
+>     $ git archive --remote=git@jaza.me:jaz/dotfiles.git master bin/dotfiles.sh | tar -x --strip-components 1
 
-2) Next execute it
+2) Next execute it with
 
->     $ ./dit-init.sh
+>     $ ./dotfiles.sh
 
-3) Now you can manage dotfiles with 'dit' (same as 'git')
+3) Now you can manage dotfiles with the command 'dotfiles' (alias for git)
 
->     $ dit <command>
+>     $ dotfiles <command>
index c7df52d7cbdf2ffee322d19b7fea359ec8a46b7a..34a928afe79993aa92fe5768233e0999f981bded 100755 (executable)
@@ -9,9 +9,9 @@ function dotfiles()
 }
 
 # Initial setup
-githome config --local status.showUntrackedFiles no
-githome remote add origin git@jaza.me:jaz/dotfiles.git
-githome fetch
-githome reset --hard origin/master
-githome branch -u origin/master
+dotfiles config --local status.showUntrackedFiles no
+dotfiles remote add origin git@jaza.me:jaz/dotfiles.git
+dotfiles fetch
+dotfiles reset --hard origin/master
+dotfiles branch -u origin/master