changeset 17:5bad82f029f0

Handout update and cleanup handout Makefile target update
author Josef "Jeff" Sipek <jeffpc@optonline.net>
date Tue, 13 Sep 2005 01:16:40 -0400
parents 2e127e825c42
children 1fbd7597ab41
files Makefile handout.tex
diffstat 2 files changed, 20 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Mon Sep 12 23:46:08 2005 -0400
+++ b/Makefile	Tue Sep 13 01:16:40 2005 -0400
@@ -5,7 +5,8 @@
 	dvipdf -g2700x3450 -r300 slideshow.dvi
 	
 handout:
-	latex handout.tex && dvipdf handout.dvi
+	latex handout.tex
+	dvipdf -g2700x3450 -r300 handout.dvi
 
 diagrams:
 	dot -Tps client-server.dot -o client-server.ps
--- a/handout.tex	Mon Sep 12 23:46:08 2005 -0400
+++ b/handout.tex	Tue Sep 13 01:16:40 2005 -0400
@@ -1,8 +1,19 @@
 % two sided printing
 \documentclass[letterpaper,12pt]{article}
 
+\usepackage[reset,margin=1.2in]{geometry}
+%left=1in,right=1in,top=0.9in,bottom=0.6in]{geometry}
+
+\title{\huge SCM/VCS\normalsize}
+\author{Josef ``Jeff'' Sipek $<$jeffpc@optonline.net$>$}
+\date{}
+%\twocolumn
 \begin{document}
+\maketitle
+\vspace{0.75cm}
 
+\section{Command Reference}
+\begin{center}
 \begin{tabular}{|c|c|c|}
 	\hline
 	What			& Subversion		& Mercurial \\
@@ -10,22 +21,23 @@
 	Create repository	& svnadmin create \emph{/path/to/repo}	& hg init \emph{/path/to/repo} \\
 	Clone repository	& \emph{does not apply}	& hg clone \emph{existing} \emph{/path/to/clone/to} \\
 	Commit changes		& svn commit		& hg commit \\
-	Push changes		& \emph{does not apply} & hg push \emph{remote repo} \\
-	Pull changes		& \emph{does not apply} & hg pull \emph{remote repo} \\
+	Push changes		& \emph{does not apply} & hg push [\emph{remote\_repo}] \\
+	Pull changes		& \emph{does not apply} & hg pull [\emph{remote\_repo}] \\
 	Getting updates		& svn update		& hg pull \&\& hg update \\
-	Tagging			& FIXME:???		& hg tag \emph{tag name} \\
+	Tagging			& svn copy \emph{url1} \emph{url2}	& hg tag \emph{tag\_name} \\
 	View diff		& svn diff		& hg diff \\
 	View Status		& svn status		& hg status \\
-	Adding dirs and files	& svn add \emph{file name}	& hg add \emph{file name} \\
-	Removing dirs and files	& svn rm \emph{file name}	& rm \emph{file name} \&\& hg rm \emph{file name} \\
+	Adding dirs and files	& svn add \emph{file name}	& hg add \emph{file\_name} \\
+	Removing dirs and files	& svn rm \emph{file name}	& rm \emph{file\_name} \&\& hg rm \emph{file\_name} \\
 	Viewing history		& svn log		& hg log \\
 	\hline
-	
 \end{tabular}
+\end{center}
 
 \section{Resources}
 http://svnbook.red-bean.com/ - \emph{Version Control With Subversion} (also published by O'Reilly)\\
 http://subversion.tigris.org/ - Subversion homepage\\
 http://www.selenic.com/mercurial/ - Mercurial homepage\\
 http://www.darcs.net/DarcsWiki/Tailor - Tailor (Repository conversion tool)
+
 \end{document}