• git移除某文件夹的版本控制


    git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。
    git rm -r --cached  "bin/"      //最终执行命令. 
    git commit -m" remove bin folder all file out of control"    //提交
    git push origin master   //提交到远程服务器
  • 相关阅读:
    D
    A
    D
    G
    H
    E
    F
    B
    D
    oracle中新建用户和赋予权限
  • 原文地址:https://www.cnblogs.com/Gold-fangjin/p/13299273.html
Copyright © 2020-2023  润新知