diff options
author | Jake Prather <JakeHP@Zoho.com> | 2013-07-18 11:49:27 -0500 |
---|---|---|
committer | Jake Prather <JakeHP@Zoho.com> | 2013-07-18 11:49:27 -0500 |
commit | eef26a084197db553358bedcb3c7ffae4eaa826d (patch) | |
tree | 1b4a771ad457a77f39ca915bc8a34211f49dcd31 /git.html.markdown | |
parent | 62b9306f6c5a261349f99b703e94ac4830417f3b (diff) |
some organization & clarification
Diffstat (limited to 'git.html.markdown')
-rw-r--r-- | git.html.markdown | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/git.html.markdown b/git.html.markdown index d56f594a..696639fd 100644 --- a/git.html.markdown +++ b/git.html.markdown @@ -19,7 +19,7 @@ of your source code. ``` /////////////////////////////////////// -// Concepts +// Versioning Concepts /////////////////////////////////////// /////////////////////////////////////// @@ -45,11 +45,16 @@ of your source code. * Git is fast. * Git is flexible. +/////////////////////////////////////// +// Git Architecture +/////////////////////////////////////// + /////////////////////////////////////// // Repository /////////////////////////////////////// - A set of files, directories, historical records, commits, and heads. Imagine it as a source code datastructure, with the attribute that each source code "element" gives you access to its revision history, among other things. + A set of files, directories, historical records, commits, and heads. Imagine it as a source code datastructure, + with the attribute that each source code "element" gives you access to its revision history, among other things. A git repository is comprised of the .git directory & working tree. |