version control Hands-on Unix System Administration DeCal - Fall - - PowerPoint PPT Presentation

version control
SMART_READER_LITE
LIVE PREVIEW

version control Hands-on Unix System Administration DeCal - Fall - - PowerPoint PPT Presentation

version control Hands-on Unix System Administration DeCal - Fall 2012 2012-10-29 (off-topic) nagios system/network monitoring software watches hosts and services alerts version control in a nutshell keep track of changes made


slide-1
SLIDE 1

version control

Hands-on Unix System Administration DeCal - Fall 2012 2012-10-29

slide-2
SLIDE 2

(off-topic)

nagios

■ system/network monitoring software ■ watches hosts and services ■ alerts

slide-3
SLIDE 3

version control in a nutshell

■ keep track of changes made to files over time (versions) ■ can revert changes, compare revisions go back to specific revisions ■ rcs, cvs, subversion, mercurial, git ■ git+hg = distributed version control ○ for the curious: ○

http://betterexplained.com/articles/intro-to-distributed- version-control-illustrated/ersion-control-illustrated/

slide-4
SLIDE 4

version control concepts/terms

■ repository ○

git init

git clone

svnadmin create <REPO_PATH>

■ revision ■ "checking out" ■ working copy ○

svn checkout

■ "checking in"/"commit" ○

svn ci/svn commit, git commit

■ deltas ■ merging, conflicts ○

svn resolve --accept=ARG