Skip to content

1. git自动补全

1.1 Mac下

bash
brew install bash-completion
brew install bash-completion

1.2 Win下

bash
git clone https://github.com/git/git
git clone https://github.com/git/git
#复制 git-completion.bash
#源代码下有个 contrib/completion 目录,有个 git-completion.bash 文件

cd git/contrib/completion/

#将该文件复制到主目录(~)下。注意:复制时,文件名前加一个"点"(.),命令如下:
cp git-completion.bash ~/.git-completion.bash
#复制 git-completion.bash
#源代码下有个 contrib/completion 目录,有个 git-completion.bash 文件

cd git/contrib/completion/

#将该文件复制到主目录(~)下。注意:复制时,文件名前加一个"点"(.),命令如下:
cp git-completion.bash ~/.git-completion.bash
bash
将下面代码添加到~/.bashrc(如果没有该文件,新建一个)。

# git auto completition
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
将下面代码添加到~/.bashrc(如果没有该文件,新建一个)。

# git auto completition
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi

然后,source一下使其生效

bash
source ~/.git-completion.bash
source ~/.bashrc

#这样就可以,按下Tab键就可以提示啦。(如果还不可以,重启终端试试)

$ git che
checkout cherry cherry-pick
source ~/.git-completion.bash
source ~/.bashrc

#这样就可以,按下Tab键就可以提示啦。(如果还不可以,重启终端试试)

$ git che
checkout cherry cherry-pick

2. 小乌龟git状态不显示

image-20241122110130337

计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers

image-20241122110318972