我终于开始学习git了。然而,我通过Sourcetree不明智地开始讨论它(之前我真的知道我在做什么)。现在我正试图通过它,我有一个非常大的设置列表。当我输入:
git config --list
我得到以下结果:
core.excludesfile=~/.gitignore
core.legacyheaders=false
core.quotepath=false
core.pager=less -r
mergetool.keepbackup=true
push.default=simple
color.ui=auto
color.interactive=auto
repack.usedeltabaseoffset=true
alias.s=status
alias.a=!git add . && git status
alias.au=!git add -u . && git status
alias.aa=!git add . && git add -u . && git status
alias.c=commit
alias.cm=commit -m
alias.ca=commit --amend
alias.ac=!git add . && git commit
alias.acm=!git add . && git commit -m
alias.l=log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'
alias.ll=log --stat --abbrev-commit
alias.lg=log --color --graph --pretty=format:'%C(bold white)%h%Creset -%C(bold green)%d%Creset %s %C(bold green)(%cr)%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
alias.llg=log --color --graph --pretty=format:'%C(bold white)%H %d%Creset%n%s%n%+b%C(bold blue)%an <%ae>%Creset %C(bold green)%cr (%ci)' --abbrev-commit
alias.d=diff
alias.master=checkout master
alias.spull=svn rebase
alias.spush=svn dcommit
alias.alias=!git config --list | grep 'alias\.' | sed 's/alias\.\([^=]*\)=\(.*\)/\1\ => \2/' | sort
include.path=~/.gitcinclude
include.path=.githubconfig
include.path=.gitcredential
diff.exif.textconv=exif
credential.helper=osxkeychain
core.excludesfile=/Users/myusername/.gitignore_global
difftool.sourcetree.cmd=opendiff "$LOCAL" "$REMOTE"
difftool.sourcetree.path=
mergetool.sourcetree.cmd=/Applications/SourceTree.app/Contents/Resources/opendiff-w.sh "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$MERGED"
mergetool.sourcetree.trustexitcode=true
user.name=My Name
user.email=myemail@email.com
这似乎比我想要开始的更多,因为我正在完成的教程并没有全力以赴。
有没有办法将配置文件“重置”为默认状态?
答案 0 :(得分:9)
请注意,git config --list确实同时显示系统(<path/to/git/config>
),全局($HOME/.gitconfig
)和本地(path/to/repo/.git/config
)设置。
要查看已添加到回购广告中的内容:
git config --local --list
删除多个值:
git config [<file-option>] --unset-all name [value_regex]
git config [<file-option>] --remove-section name
例如:git config --local --remove-section alias
将删除别名。
仅仅摆脱.git/config
文件就更准确了。
答案 1 :(得分:0)
要为GIT设置新的用户名和密码,请使用以下命令。 经过测试,工作正常。
设置/重置GIT用户名和密码:
>git config --global user.name "your username"
>git config --global user.password "your password"