commit 2d4b889d59a0e78dbc79285f1c1bab9c6360a93c
parent 155e13dd7d4b7b321818ac737d8f4943aef2c371
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Mon, 23 Dec 2024 11:16:19 +0100
Dust off README
s/master/trunk/
s/checkout/restore/
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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