jenkins the definitive guide

(Jeff_L) #1
$ git clone [email protected]:<username>/game-of-life.git

This will “clone” (or check out, in Subversion terms) a copy of the project onto your local drive:


git clone [email protected]:john-smart/game-of-life.git
Initialized empty Git repository in /Users/johnsmart/.../game-of-life/.git/
remote: Counting objects: 1783, done.
remote: Compressing objects: 100% (589/589), done.
remote: Total 1783 (delta 1116), reused 1783 (delta 1116)
Receiving objects: 100% (1783/1783), 14.83 MiB | 119 KiB/s, done.
Resolving deltas: 100% (1116/1116), done.

You should now have a local copy of the project that you can build and execute. We will be using this
project later on to trigger changes in the repository.


Figure 2.3. Forking the sample code repository

Free download pdf