summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 8df6f92..b8dbfa9 100644
--- a/README
+++ b/README
@@ -17,13 +17,13 @@ $ git init
$ git remote add --fetch $cutename $url
# Move to latest commit without actually touching files:
-$ git reset $cutename/master
+$ git reset $cutename/trunk
# Checkout dotfiles that were not already in $HOME:
-$ git checkout -- .foo .bar .baz
+$ git restore -- .foo .bar .baz
# Or checkout everything:
-$ git checkout -- $(git ls-files --deleted)
+$ git restore -- $(git ls-files --deleted)
# Tell Git to ignore all untracked files:
$ echo '*' >> .git/info/exclude