git设置免密提交命令

设置免密:

git config --global credential.helper store

提交文件:

git add ucenter/bb.txt
git commit -m 'test'
git push -u origin master

原文地址:https://www.cnblogs.com/wangliaohan/p/11200804.html