怎么给git push添加密码
答案:2 悬赏:60 手机版
解决时间 2021-02-26 10:07
- 提问者网友:活着好累
- 2021-02-25 15:46
怎么给git push添加密码
最佳答案
- 五星知识达人网友:煞尾
- 2021-02-25 16:48
在%HOME%目录中,一般为C:\users\Administrator,也可以是你自己创建的系统用户名目录,反正都在C:\users\中。文件名为.git-credentials,由于在Window中不允许直接创建以"."开头的文件,所以需要借助git bash进行,打开git bash客户端,进行%HOME%目录,然后用touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:
touch .git-credentials
vim .git-credentials
https://{username}:{password}@github.com
(说明:此处应为https://username:password@github.com)
touch .git-credentials
vim .git-credentials
https://{username}:{password}@github.com
(说明:此处应为https://username:password@github.com)
全部回答
- 1楼网友:躲不过心动
- 2021-02-25 18:10
$ git add text/text1.txt
$ git commit -m "text1"
$ git add text/text2.txt
$ git commit -m "text2"
$ git push origin master
单独add 单独commit测试可行。其他方法不清楚。但是外部文件夹的message会是最后一次commit提交的message。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯