git 设置邮箱和保存密码
在第一次用git commit的时候,需要我们配置账号和邮箱:
git config --global user.name 你的名字
git config --global user.email 你的邮箱地址
在用git push代码的时候,经常需要重复输入密码,下面的命令可以让我们免除这种烦恼,只需要输入一次,以后就不用再输入密码了:
git config --global credential.helper store
0
在第一次用git commit的时候,需要我们配置账号和邮箱:
git config --global user.name 你的名字
git config --global user.email 你的邮箱地址
在用git push代码的时候,经常需要重复输入密码,下面的命令可以让我们免除这种烦恼,只需要输入一次,以后就不用再输入密码了:
git config --global credential.helper store