https://blog.csdn.net/qq_29846663/article/details/73498853 查看email % cat ~/.gitconfig[user] email = a@bc.com[credential] helper = store[http] sslverif ...
分类:
其他好文 时间:
2021-04-22 15:36:18
阅读次数:
0
配置git: git config --global user.name "XXX" git config --gloaal user.email "XXX@...com" 文件在用户目录下 .gitconfig 中,可以手动删除 关联远程仓库 转到工程目录下 为了下次连接远程仓库不用输入密码,设置 ...
分类:
其他好文 时间:
2021-04-19 15:55:18
阅读次数:
0
git(开源的分布式版本控制系统) 1.将远程仓库克隆到本地 git clone 远程仓库的地址 2.设置自己的用户名和邮件地址 会被写入到 C:/Users/用户名文件夹/.gitconfig 文件中。这个文件是 Git 的全局配置文件,配置一次即可永久生效。 git config --globa ...
分类:
其他好文 时间:
2021-01-12 11:23:25
阅读次数:
0
linux 系统上配置 .gitconfig [core] autocrlf = input safecrlf = warn 配置为提交时转为 lf,下拉时不转换。如果文件时混合换行符时,进行警告。 参考:https://www.jianshu.com/p/6ef90ce18ba2 https:// ...
分类:
其他好文 时间:
2020-12-19 11:42:15
阅读次数:
1
目的:为了方便服务器上每次git拉去都需要填写密码,而又不想用ssh密钥的 1、在终端下执行 git config --global credential.helper store 2、查看 ~/.gitconfig文件,会多了一项: [credential] helper = store ...
分类:
系统相关 时间:
2020-12-04 10:57:17
阅读次数:
10
cd ~ vim .gitconfig 添加 [alias] co = checkout ci = commit br = branch :wq 保存,可以根据自己喜好灵活配置 ...
分类:
系统相关 时间:
2020-07-20 13:22:36
阅读次数:
120
Git使用(对廖雪峰老师Git教程的总结,同时推荐一个博客的教程,诙谐有趣) Git配置 全局配置 主目录下的.gitconfig # 设置名称信息 git config --global user.name <"Name"> # 设置邮箱信息 git config --global user.em ...
分类:
其他好文 时间:
2020-07-17 14:03:40
阅读次数:
75
git config --list List all the settings git can find at /etc/gitconfig, ~/.gitconfig, ~/.config/git/config or .git/config. git config --system --list ...
分类:
其他好文 时间:
2020-06-30 16:03:38
阅读次数:
57
帮助命令 git help <verb> git <verb> --help man git-<verb> 例如:git help config git配置文件的三个位置 /etc/gitconfig文件:系统级,系统上所有用户的通用配置 ~/.gitconfig文件:用户级,当前用户配置 .git ...
分类:
其他好文 时间:
2020-06-17 23:02:08
阅读次数:
64
一、git安装1、gitforwindows下载地址:https://gitforwindows.org/下载好安装包直接默认安装即可2、gitforcontos安装#yum-yinstallgit3、查看git版本#git--version二、git使用前配置(必需)1、配置gituser及email#gitconfig--globaluser.neme"zhouzeheng"#gitconfi
分类:
其他好文 时间:
2020-06-15 16:13:35
阅读次数:
57