Difference between revisions of "Git"

From Net-SNMP Wiki
Jump to: navigation, search
Line 13: Line 13:
 
Checking it out if you're a developer:
 
Checking it out if you're a developer:
 
   git clone ssh://''USERNAME''@net-snmp.git.sourceforge.net/gitroot/net-snmp/''MODULE''
 
   git clone ssh://''USERNAME''@net-snmp.git.sourceforge.net/gitroot/net-snmp/''MODULE''
 +
 +
== Learning Git ==
 +
 +
If you're starting out learning Git, here are some useful resources:
 +
 +
* If you're familiar with SVN, read the [http://git.or.cz/course/svn.html Git - SVN Crash Course]
 +
* The git manual pages.  In particular:
 +
** [http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html the Git tutorial]
 +
** [http://www.kernel.org/pub/software/scm/git/docs/gittutorial-2.html the Git tutorial, part 2]
 +
** [http://www.kernel.org/pub/software/scm/git/docs/git.html The main git manual page]
  
 
[[Category:Git]]
 
[[Category:Git]]

Revision as of 20:34, 17 June 2011

Git is a version control system (VCS) that is based on a distributed architecture. In June, 2011 the Net-SNMP project will switch from SVN to Git.

If you're a developer, you might checkout out the Git For Developers page.

Checking out the Net-SNMP Git Tree

Select a git MODULE:

  • htdocs

Check it out anonymously (read-only access):

 git clone git://net-snmp.git.sourceforge.net/gitroot/net-snmp/MODULE

Checking it out if you're a developer:

 git clone ssh://USERNAME@net-snmp.git.sourceforge.net/gitroot/net-snmp/MODULE

Learning Git

If you're starting out learning Git, here are some useful resources: