This article introduces the content related to git configuration based on an actual problem encountered. Command: git config Use git config for related configuration operations Configuration Files As a whole, git configuration files are divided into three levels, combined with priority related information as follows Simply put, the closer you are to the repository, the higher the priority level is, so project level > user level > system level. When the same settings appear at the same time, the one with higher priority will override the upper configuration. Configuration Check Use git config with different parameters to check the settings of the three different levels above. Because the same settings may be overwritten, using git config -l will list the final settings that git thinks are correct. Problem phenomenon Many clients encounter problems when automatically generating .gitignore, such as the following git and OS versions that encounter an error message for the ng new action: Environmental Information liumiaocn:angualr liumiao$ git --version git version 2.15.0 liumiaocn:angualr liumiao$ uname -a Darwin liumiaocn 17.3.0 Darwin Kernel Version 17.3.0: Thu Nov 9 18:09:22 PST 2017; root:xnu-4570.31.3~1/RELEASE_X86_64 x86_64 liumiaocn:angualr liumiao$ liumiaocn:angualr liumiao$ ng --version _ _ ____ _ ___ / \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _| / △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | | / ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | | /_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___| |___/ Angular CLI: 1.7.3 Node: 8.9.1 OS: darwin x64 Angular: ... liumiaocn:angualr liumiao$ Phenomenon liumiaocn:angualr liumiao$ ng new demo1 --skip-install create demo1/README.md (1021 bytes) create demo1/.angular-cli.json (1240 bytes) ...omit create demo1/src/app/app.component.ts (207 bytes) error: could not expand include path '~/.gitcinclude' fatal: bad config line 44 in file /usr/local/git/etc/gitconfig Project 'demo1' successfully created. liumiaocn:angualr liumiao$ Configuration Information liumiaocn:angualr liumiao$ cat /usr/local/git/etc/gitconfig [core] excludesfile = ~/.gitignore legacyheaders = false # >git 1.5 quotepath = false [user] # name = your name # email = your@name [mergetool] keepBackup = true [push] default = simple # [ matching | simple ] [color] ui = auto interactive = auto [repack] usedeltabaseoffset = true # >git 1.5 [alias] s = status a = !git add . && git status au = !git add -u . && git status aa = !git add . && git add -u . && git status c = commit cm = commit -m ca = commit --amend # careful ac = !git add . && git commit acm = !git add . && git commit -m l = log --graph --all --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset' ll = log --stat --abbrev-commit 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 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 d = diff master = checkout master spull = svn rebase spush = svn dcommit alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort [include] # as of 1.7.10 https://github.com/git/git/commit/9b25a0b52e09400719366f0a33d0d0da98bbf7b0 path = ~/.gitcinclude path = .githubconfig path = .gitcredential #[github] # user = # token = [diff] # git does copy/rename *detection*. if you want it to track copies/renames: # http://stackoverflow.com/questions/1043388/record-file-copy-operation-with-git # renames = copies [diff "exif"] textconv = exif [credential] helper = osxkeychain liumiaocn:angualr liumiao$ reason The reason seems to be that there is a problem with the expansion of ~. Expanding ~ to a global name in the setting file temporarily solves this problem. However, combined with the above, it can be seen that this is actually a way of reducing the system-level settings to the user-level processing. Modification method liumiaocn:angualr liumiao$ sudo cp /usr/local/git/etc/gitconfig /usr/local/git/etc/gitconfig.org Password: liumiaocn:angualr liumiao$ echo $HOME /Users/liumiao liumiaocn:angualr liumiao$ echo ~ /Users/liumiao liumiaocn:angualr liumiao$ sudo vi /usr/local/git/etc/gitconfig liumiaocn:angualr liumiao$ liumiaocn:angualr liumiao$ diff /usr/local/git/etc/gitconfig /usr/local/git/etc/gitconfig.org 2c2 < excludesfile = /Users/liumiao/.gitignore --- > excludesfile = ~/.gitignore 44c44 < path = /Users/liumiao/.gitcinclude --- > path = ~/.gitcinclude liumiaocn:angualr liumiao$ Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: Solution to MySQL startup successfully but not listening to the port
>>: xtrabackup backup and restore MySQL database
Simple description Since it was built with Centos...
Dark background style page design is very popular...
Table of contents Preface The role of render Rend...
HTML Input Attributes The value attribute The val...
1. Overall steps At the beginning, we introduced ...
principle Set a shadow on the element when hoveri...
Table of contents 1. Introduction to ReactJS 2. U...
Basically all e-commerce projects have the functi...
This article example shares the specific code of ...
Problem code Look at a closure problem code cause...
1. The ENV instruction in the Dockerfile is used ...
Do you know what fonts are used in the logo desig...
what is it? GNU Parallel is a shell tool for exec...
Table of contents Constructor new Operator Implem...
Python connects to MySQL to modify and query data...