Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Run the tutorial through ispell once more
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Thu, 2 Jun 2005 14:58:41 +0000
(07:58 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Thu, 2 Jun 2005 14:58:41 +0000
(07:58 -0700)
People are making fun of me for being a bad speeler.
Documentation/tutorial.txt
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
5180cac
)
diff --git
a/Documentation/tutorial.txt
b/Documentation/tutorial.txt
index 2fcaa1ccd1e9ef058f29cfcbdcbb7b3d30a20eba..659efbe6bad830338638b81204ecc3058abd9bbb 100644
(file)
--- a/
Documentation/tutorial.txt
+++ b/
Documentation/tutorial.txt
@@
-405,7
+405,7
@@
can do
git log
which shows just the log messages, or if we want to see the log together
git log
which shows just the log messages, or if we want to see the log together
-w
h
ith the associated patches use the more complex (and much more
+with the associated patches use the more complex (and much more
powerful)
git-whatchanged -p --root
powerful)
git-whatchanged -p --root
@@
-423,10
+423,10
@@
With that, you should now be having some inkling of what git does, and
can explore on your own.
can explore on your own.
- Cop
o
ying archives
+ Copying archives
-----------------
-----------------
-Git arhives are normally totally self-sufficient, and it's worth noting
+Git ar
c
hives are normally totally self-sufficient, and it's worth noting
that unlike CVS, for example, there is no separate notion of
"repository" and "working tree". A git repository normally _is_ the
working tree, with the local git information hidden in the ".git"
that unlike CVS, for example, there is no separate notion of
"repository" and "working tree". A git repository normally _is_ the
working tree, with the local git information hidden in the ".git"
@@
-486,7
+486,7
@@
actual core git files. Such a repository usually doesn't even have the
repository.
To create your own local live copy of such a "raw" git repository, you'd
repository.
To create your own local live copy of such a "raw" git repository, you'd
-first create your own subdirectory for the project, a
dn
then copy the
+first create your own subdirectory for the project, a
nd
then copy the
raw repository contents into the ".git" directory. For example, to
create your own copy of the git repository, you'd do the following
raw repository contents into the ".git" directory. For example, to
create your own copy of the git repository, you'd do the following
@@
-506,13
+506,13
@@
those, you'd check them out with
git-checkout-cache -u -a
where the "-u" flag means that you want the checkout to keep the index
git-checkout-cache -u -a
where the "-u" flag means that you want the checkout to keep the index
-up-to-date (so that you don't have to refresh it afterward
s
), and the
+up-to-date (so that you don't have to refresh it afterward), and the
"-a" file means "check out all files" (if you have a stale copy or an
older version of a checked out tree you may also need to add the "-f"
file first, to tell git-checkout-cache to _force_ overwriting of any old
files).
"-a" file means "check out all files" (if you have a stale copy or an
older version of a checked out tree you may also need to add the "-f"
file first, to tell git-checkout-cache to _force_ overwriting of any old
files).
-You have now successfully copied somebody elses (mine) remote
+You have now successfully copied somebody else
'
s (mine) remote
repository, and checked it out.
[ to be continued.. cvs2git, tagging versions, branches, merging.. ]
repository, and checked it out.
[ to be continued.. cvs2git, tagging versions, branches, merging.. ]