diff options
-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. |