Merge branch 'tb/banned-vsprintf-namefix'
[gitweb.git] / Documentation / gittutorial.txt
index 794b83393ea21a8d569c34791ee4af1dfb99a57a..59ef5cef1f080d079109c50f6034ff88901c658f 100644 (file)
@@ -109,8 +109,8 @@ summary of the situation with 'git status':
 $ git status
 On branch master
 Changes to be committed:
-Your branch is up-to-date with 'origin/master'.
-  (use "git reset HEAD <file>..." to unstage)
+Your branch is up to date with 'origin/master'.
+  (use "git restore --staged <file>..." to unstage)
 
        modified:   file1
        modified:   file2
@@ -207,7 +207,7 @@ automatically.  The asterisk marks the branch you are currently on;
 type
 
 ------------------------------------------------
-$ git checkout experimental
+$ git switch experimental
 ------------------------------------------------
 
 to switch to the experimental branch.  Now edit a file, commit the
@@ -216,7 +216,7 @@ change, and switch back to the master branch:
 ------------------------------------------------
 (edit file)
 $ git commit -a
-$ git checkout master
+$ git switch master
 ------------------------------------------------
 
 Check that the change you made is no longer visible, since it was