gitignore命令

  1. 在~/.bashrc文件末尾新起一行,粘贴如下脚本
#gitignore 用法: gitignore file1 file2 files...
function gitignore(){
    prjroot=`git rev-parse --show-toplevel 2>&1`    #获取git项目根目录
    notagit='not a git repository'
    if [[ "$prjroot" =~ "$notagit" ]];then
        echo "error: $prjroot"
        exit 1
    fi

    pathlen=$[${#prjroot} +1]
    for f in $@;do
        igpath=`readlink -f $f`     #获取绝对路径
        if [ -d $igpath ];then      #判断是否ignore目录
            igpath=$igpath/
        fi
        if [[ "$igpath" == "${prjroot}"/* ]];then  #判断是否在项目目录内
            igpath=${igpath:$pathlen}
        else
            echo "$f not in project $prjroot"
            exit 2
        fi

        already_=`grep "^$igpath$" $prjroot/.gitignore`   #判断是否已经ignore
        if [[ "$already_" == "" ]];then
            echo $igpath >> $prjroot/.gitignore
            echo ignore $igpath success
        else
            echo already ignored $igpath 
        fi
    done
}
export gitignore
  1. 然后敲击bash使命令生效, 即可使用gitignore命令了

你可能感兴趣的:(bash,git,ignore,git,ignore)