服务器端 搭建gitblit

参考网址 :https://www.cnblogs.com/xifenglou/p/6952604.html

Gitblit Git 无密码 clone pull SSH Key 生成:http://aigo.iteye.com/blog/2266163

gitblit 搭建完成之后ignore文件不生效,提交代码到gitblit上好多无用的文件,需要用 git rm -r --cached . 把本地仓库清除一下,

然后git add . 

git commit -m "" 

git push origin master

再次提交代码就不会有很多无用的文件。

原文地址:https://www.cnblogs.com/IT-lss/p/9647695.html