summaryrefslogtreecommitdiffstats
path: root/web/input/doc/faq/git.md
diff options
context:
space:
mode:
Diffstat (limited to 'web/input/doc/faq/git.md')
-rw-r--r--web/input/doc/faq/git.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/web/input/doc/faq/git.md b/web/input/doc/faq/git.md
index 390b87a..e9bc27d 100644
--- a/web/input/doc/faq/git.md
+++ b/web/input/doc/faq/git.md
@@ -4,9 +4,8 @@ parent: FAQ
4 4
5# How do I use Git? 5# How do I use Git?
6 6
7After the 1.4.13 release, the [Nagios Plugins Development Team][team] moved to 7After the 1.4.13 release, the project moved to [Git][git] for its code
8[Git][git] for its code repositories. This document is a quick introduction 8repositories. This document is a quick introduction to Git.
9to Git.
10 9
11## Basic Concepts 10## Basic Concepts
12 11
@@ -41,14 +40,14 @@ with Git you only have to type a handful of digits to reference one.
41To work on a project you first have to clone it. This creates your own local 40To work on a project you first have to clone it. This creates your own local
42repository, and until you want to distribute your change or merge changes from 41repository, and until you want to distribute your change or merge changes from
43someone else, everything that follows can happen offline. If you have push 42someone else, everything that follows can happen offline. If you have push
44access to the Nagios Plugins repository, run the command: 43access to the Monitoring Plugins repository, run the command:
45 44
46 $ git clone git@github.com:nagios-plugins/nagios-plugins.git 45 $ git clone git@github.com:monitoring-plugins/monitoring-plugins.git
47 46
48If you just want a local copy or wish to clone it to your workstation, you can 47If you just want a local copy or wish to clone it to your workstation, you can
49run this command instead: 48run this command instead:
50 49
51 $ git clone git://github.com/nagios-plugins/nagios-plugins.git 50 $ git clone git://github.com/monitoring-plugins/monitoring-plugins.git
52 51
53This will create a directory called `nagios-plugins` with all the `master` 52This will create a directory called `nagios-plugins` with all the `master`
54code and history (this is roughly equivalent to CVS/SVN `HEAD`). Change 53code and history (this is roughly equivalent to CVS/SVN `HEAD`). Change
@@ -192,7 +191,6 @@ on the [Git web site][git]).
192- Git for Computer Scientists 191- Git for Computer Scientists
193 <http://eagain.net/articles/git-for-computer-scientists/> 192 <http://eagain.net/articles/git-for-computer-scientists/>
194 193
195[team]: team.html "Nagios Plugins Development Team"
196[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" 194[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines"
197[git]: http://git-scm.com/ "Git" 195[git]: http://git-scm.com/ "Git"
198[scott]: http://scottchacon.com/ "Scott Chacon" 196[scott]: http://scottchacon.com/ "Scott Chacon"