摘要:
Linux 常用命令 基础 切换用户 su yao //切换为用户"yao",输入后回车需要输入该用户的密码 exit //退出当前用户 目录 搜索目录 find /bin -name 'a*' //查找/bin目录下的所有以a开头的文件或者目录 文件 新增文件 touch a.txt //在当前目 阅读全文
摘要:
Git常用命令 初始化仓库 git init 在当前目录生成初始化git仓库 git clone 克隆服务端仓库到本地 git clone <url> [directory] 不同协议类型 git clone git@github.com/schacon/grit.git --SSH协议 git c 阅读全文