Remove "stg add"
[stgit] / Documentation / tutorial.txt
index 5899c38..43b6409 100644 (file)
@@ -127,14 +127,14 @@ already exist in the working directory, but you have to tell StGIT
 explicitly if you add, remove, or rename files.
 To record the addition or deletion of files in your new patch:
 
-  stg add [<file>*]
+  git add [<file>*]
   stg rm [<file>*]
 
 To record the renaming of a file in your new patch, issue both of these
 commands:
 
   stg rm <oldfilename>
-  stg add <newfilename>
+  git add <newfilename>
 
 
 Stack manipulation: managing multiple patches
@@ -387,9 +387,6 @@ Layout of the .git directory
     heads/
       master           - the master commit id
       ...
-    bases/
-      master           - the bottom id of the stack (to get a big diff)
-      ...
     tags/
       ...
     branches/