Added Git post.
authorW. Trevor King <wking@drexel.edu>
Tue, 5 Oct 2010 21:12:18 +0000 (17:12 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 5 Oct 2010 21:12:18 +0000 (17:12 -0400)
posts/Git.mdwn [new file with mode: 0644]

diff --git a/posts/Git.mdwn b/posts/Git.mdwn
new file mode 100644 (file)
index 0000000..c395093
--- /dev/null
@@ -0,0 +1,26 @@
+[Git][] is a [distributed][DVCS] [verision control system][VCS].
+Highly recommended.  There is an excellent [tutorial][], or you can
+take a look at my [[notes]] (best viewed in [[Emacs]] org-mode).  See
+[[git-publish]] for a useful Git public-repository setup script.
+
+I've published Git repositories for most of my more involved [projects][].
+
+You can download a repo with
+
+    git clone http://www.physics.drexel.edu/~wking/code/git/<repo-name> <local-dir>
+
+For example
+
+    git clone http://www.physics.drexel.edu/~wking/code/git/sawsim.git sawsim
+
+Of course, traditional tarballs, zips, etc. are also available through
+the web interface.
+
+[Git]: http://git.or.cz/
+[DVCS]: http://en.wikipedia.org/wiki/Distributed_Version_Control_System
+[VCS]: http://en.wikipedia.org/wiki/Revision_control
+[tutorial]: http://book.git-scm.com/
+[projects]: http://www.physics.drexel.edu/~wking/code/git/git.php
+
+[[!tag tags/linux]]
+[[!tag tags/code]]