How can I configure jenkins that it pull instead of clone?
Asked
Active
Viewed 6,129 times
1 Answers
5
The default behavior of git plugin in jenkins is:
- Clone the repository if your directory is empty;
- If the repository has already been cloned, it will be updated.
So, the first time that your job run the repository will be cloned, and in the second will be updated.

Victor
- 5,043
- 3
- 41
- 55