git初始配置存储帐号等
星期三, 2019-02-27 | Author: Lee | linux | 1,730 views
信息保存在 当前帐号的 ~/.gitconfig 下和 ~/.git-credentials
1.配置提交的用户名及email地址
$ git config --global user.name "Leeyz" $ git config --global user.email "[email protected]" |
2.配置自动保存帐号信息省的每次 pull 都输入密码
$ git config --global credential.helper store |
3. 移除帐号信息可以
$ rm ~/.gitconfig $ rm ~/.git-credentials |
4.密码等信息重新修改可以使用下面命令移除保存的密码信息
$ git config --global http.emptyAuth true |
更多使用手册参考:https://git-scm.com/book/zh/v2
文章作者: Lee
本文地址: https://www.pomelolee.com/1850.html
除非注明,Pomelo Lee文章均为原创,转载请以链接形式标明本文地址
一条评论 to git初始配置存储帐号等
配置项目下的git用户信息,会覆盖全局的设置给指定项目设置用户
# vim gitlab_demo/.git/config 文件
[user]
name = gitlab_name
email = [email protected]
Leave a comment
Search
相关文章
热门文章
最新文章
文章分类
- ajax (10)
- algorithm-learn (3)
- Android (6)
- as (3)
- computer (85)
- Database (30)
- disucz (4)
- enterprise (1)
- erlang (2)
- flash (5)
- golang (3)
- html5 (18)
- ios (4)
- JAVA-and-J2EE (186)
- linux (143)
- mac (10)
- movie-music (11)
- pagemaker (36)
- php (50)
- spring-boot (2)
- Synology群晖 (2)
- Uncategorized (6)
- unity (1)
- webgame (15)
- wordpress (33)
- work-other (2)
- 低代码 (1)
- 体味生活 (40)
- 前端 (21)
- 大数据 (8)
- 游戏开发 (9)
- 爱上海 (19)
- 读书 (4)
- 软件 (3)
2022 年 04 月 18 日