Where is my git alias stored?

前端 未结 2 400
一个人的身影
一个人的身影 2021-01-03 21:48

I have an alias that I cannot find. Typing git help subaddvim gives me:

`git subaddvim\' is aliased to `log HEAD\'

I think I d

2条回答
  •  既然无缘
    2021-01-03 22:16

    Scott Chacon's excellent book "Pro Git" covers where things are stored, and what options to pass to git config to read/write to that location:

    Git comes with a tool called git config that lets you get and set configuration variables that control all aspects of how Git looks and operates. These variables can be stored in three different places:

    • /etc/gitconfig file: Contains values for every user on the system and all their repositories. If you pass the option --system to git config, it reads and writes from this file specifically.

    • ~/.gitconfig file: Specific to your user. You can make Git read and write to this file specifically by passing the --global option.

    • config file in the git directory (that is, .git/config) of whatever repository you’re currently using: Specific to that single repository. Each level overrides values in the previous level, so values in .git/config trump those in /etc/gitconfig.

    You can have git tell you what's defined where using the --list option:

    # shows all settings
    git config --list
    
    # shows system settings
    git config --list --system
    
    # shows user settings
    git config --list --global
    
    # shows project settings
    git config --list --local
    

提交回复
热议问题