Jenkins部署资料

http://www.cnblogs.com/gaohongchen01/p/5058928.html
https://www.javacodegeeks.com/2015/04/jenkins-how-to-build-a-project-from-multiple-git-repositories.html
https://www.codeproject.com/Articles/878203/Integrate-Jenkins-with-MSBuild-and-NuGet
https://wiki.jenkins.io/display/JENKINS/Git+Plugin

问题和解决方案收集:

1、配置github拉取代码,本身很简单,但是总是提示 Error fetching remote repo 'origin',可能原因是没有使用32位的git.exe工具,jenkins暂时不能正常使用64位的git.exe
2、配置了git,然后 创建任务拉去代码的时候,总是报超时之类的错误,或者是无法拉取代码,我们可以进入对应git.exe目录执行下面2句命令。
https://stackoverflow.com/questions/36479201/stuck-at-fetch-due-to-authentication-issue
git config --system --unset credential.helper
git config --global credential.interactive never

原文地址:https://www.cnblogs.com/ZHUYIN/p/7778827.html