CentOS上用yum装好git以后,默认没有命令补全。需要简单配置一下。
1.编辑 ~/.bash_profile 文件,添加以下内容
if [ -f /etc/bash_completion.d/git ]; then . /etc/bash_completion.d/git fi export GIT_PS1_SHOWDIRTYSTATE=true PS1='[\u@\h \W\[\033[01;32m\]$(__git_ps1 "(%s)")\[\033[00m\]]\$ '
2.应用修改
source ~/.bash_profile
修改之后的效果如下图:
项目开发中,有时需要添加一些本地的过滤文件,不提交到仓库中。可以采用以下方式
1.git config core.excludesfile .localgitignore
2.创建 .localgitignore 文件中添加需要过滤的内容
3.在默认的 .gitignore 文件中过滤 .localgitignore