
基本命令
nwj_03
码农一枚,努力修炼中
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git error: hint: Updates were rejected because the remote contains work that you do hint: not havelb
hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integ...原创 2019-12-22 01:30:40 · 396 阅读 · 0 评论 -
git中显示Please enter a commit message to explain why this merge is necessary
git中Please enter a commit message to explain why this merge is necessary. Please enter a commit message to explain why this merge is necessary. 请输入提交消息来解释为什么这种合并是必要的 git 在pull或者合并分支的时候有时会遇到这个界面。可以不管(直...原创 2019-12-22 01:28:43 · 355 阅读 · 0 评论 -
linux下常用基本命令
1.ls 命令为查看当前目录的信息,常用参数 -l :查看文件详细信息, -a :查看当前目录所有文件,包括隐藏文件 .file。可连打 ls -al 2.cd 全程change directory ,接受目录所为参数,只能接受相对目录,或者绝对目录。cd /home/user cd . 点代表当前目录,cd … 代表上级目录,cd - 杠代表前一个目录,你从哪儿来就是那儿,cd ~ 小波浪代表宿...原创 2019-08-22 21:18:40 · 295 阅读 · 0 评论 -
Linux中文件属性含义
Linux用户分为:拥有者、组群(Group)、其他(other) linux中的文件属性分为四段,如 - rwx rwx — 第一段 - 是指文件类型 表示这是个普通文件 文件类型部分 -为:表示文件 d为:表示文件夹 b为:表示里面可以供存储周边设备 c为:表示里面为一次性读取装置 第二段 rwx 是指拥有者具有可读可写可执行的权限 r表是读 (Read) 、w表示写 (Wri...原创 2019-08-22 23:07:56 · 1900 阅读 · 0 评论