美文网首页
设置git仓库忽略idea

设置git仓库忽略idea

作者: 谦业 | 来源:发表于2020-02-25 10:38 被阅读0次

    设置gitignore忽略idea

    1. 加.idea添加到ignore清单
    % echo '.idea' >> .gitignore
    
    1. 从git中删除idea
    % git rm --cached -r .idea
    
    1. 将.gitignore文件提交到git
    % git add .gitignore
    % git commit -m "忽略.idea"
    % git push
    

    如果.idea已经上传到远程仓库,需要从仓库中删除

    git rm -r --cache .idea/
    
    git commit -m "从仓库中删除.idea"
    
    git push -u origin master
    

    相关文章

      网友评论

          本文标题:设置git仓库忽略idea

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