美文网首页
.gitignore

.gitignore

作者: 诺之林 | 来源:发表于2018-12-06 11:14 被阅读5次

    问题

    工具

    echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.zshrc && source ~/.zshrc
    

    关于gi工具的安装更多可以参考INSTALL COMMAND LINE

    gi list | grep node
    
    gi node >> .gitignore
    

    常见项目的gitignore可以参考ZendFramework / Laravel / Node / Python / Python / Java / Gradle

    方法

    • 全局忽略
    cat ~/.gitconfig | grep global
    # excludesfile = /Users/user/.gitignore_global
    
    cat ~/.gitignore_global | head -n 10
    
    ####################################
    ######## OS generated files ########
    ####################################
    .DS_Store
    .DS_Store?
    *.swp
    ._*
    .Spotlight-V100
    .Trashes
    Icon?
    
    git status
    

    参考

    相关文章

      网友评论

          本文标题:.gitignore

          本文链接:https://www.haomeiwen.com/subject/zzlncqtx.html