美文网首页
常用linux或git的命令

常用linux或git的命令

作者: 黑白饼干 | 来源:发表于2018-07-31 17:56 被阅读0次

    清空特定目录: rm -rf /dir/*
    寻找文件: find -name "some*"
    移动文件: mv [resource] [target]
    复制文件: cp [resource] [target]
    赋予文件权限: sudo chmod -R 777 [target]
    修改git的remote: git remote set-url origin [registry]

    linux上初始空仓库 git --bare init
    修改文件拥有者: chown git file -R
    修改文件所属组群: chgrp git file -R
    -R表示递归目录下所有文件

    压缩文件:zip -r file.zip admin/*
    解压文件:unzip -o file.zip -d ./

    相关文章

      网友评论

          本文标题:常用linux或git的命令

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