]> asedeno.scripts.mit.edu Git - git.git/blobdiff - Documentation/tutorial.txt
Merge branch 'master' of git://repo.or.cz/git-gui
[git.git] / Documentation / tutorial.txt
index 129c5c5f5b8657175db7efed2c06078affd05ab6..99efce4576d14598fe87b3f38ad81950079019dc 100644 (file)
@@ -1,5 +1,5 @@
-A tutorial introduction to git
-==============================
+A tutorial introduction to git (for version 1.5.1 or newer)
+===========================================================
 
 This tutorial explains how to import a new project into git, make
 changes to it, and share changes with other developers.
@@ -111,7 +111,7 @@ make it real.
 Note: don't forget to 'add' a file again if you modified it after the
 first 'add' and before 'commit'. Otherwise only the previous added
 state of that file will be committed. This is because git tracks
-content, so what you're really 'add'ing to the commit is the *content*
+content, so what you're really 'adding' to the commit is the *content*
 of the file in the state it is in when you 'add' it.
 
 2) By using 'git commit -a' directly