记住密码的方式:http://【账号】:【密码】@【ip】:【port】/【项目路径】/【.git文件】
url举例:http://username:password@192.168.1.104:8888/demo/demo.git
-
https方式:
在
git bash
中配置git config --global credential.helper store
与直接打开电脑
.gitconfig
写入[credential]
配置效果一样:在 C:Usersyour name 目录下找到到 .gitconfig 这个文件,使用编辑器打开
[user] name = **** email = ********.com [credential] helper = store
文件中增加 [credential]配置
[credential] helper = store
-
ssh方式:
在
git远程仓库
中配置ssh公钥。以前有说过这个!!!