问题:sudo:sudo /etc/sudoers is world writablesudo:no valid sudoers sources found ,quittingsudo:unable to initialize policy plugin #无法使用chmod修改权限 demo:De ...
分类:
其他好文 时间:
2019-12-13 09:31:08
阅读次数:
335
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are n ...
分类:
其他好文 时间:
2019-12-12 23:34:25
阅读次数:
99
def merge(a, b): c = [] h = j = 0 while j < len(a) and h < len(b): if a[j] < b[h]: c.append(a[j]) j += 1 else: c.append(b[h]) h += 1 if j == len(a): f ...
分类:
编程语言 时间:
2019-12-12 13:07:54
阅读次数:
87
一、简介及下载安装 Git是目前世界上最先进的分布式版本控制系统 作者 Linus Torvalds(林纳斯·托瓦兹) 关于git的发展史感兴趣可以自行百度,这里不再详细描述,接下来直接开撸 下载地址:https://git-scm.com/downloads 下载对应os版本等即可 按照提示选择默 ...
分类:
其他好文 时间:
2019-12-11 00:14:20
阅读次数:
131
# 初始化相关git initgit add .git commit -m "test001"git remote origin https://github.com/fangfuGIT/fangfugit.github.io.gitgit push -u origin master从自己的账号下c... ...
分类:
其他好文 时间:
2019-12-10 01:02:04
阅读次数:
100
本文章主要为kubernetes的错误汇总以及解决方案
分类:
Web程序 时间:
2019-12-09 19:43:16
阅读次数:
163
分支操作 暂存操作 回退操作 标签操作 常规操作 git创建项目仓库 忽略已加入到版本库中的文件 取消忽略文件 拉取、上传免密码。 分支操作 git branch 创建分支 git branch -b 创建并切换到新建的分支上 git checkout 切换分支 git branch 查看分支列表 ...
分类:
其他好文 时间:
2019-12-08 23:22:46
阅读次数:
92
场景 搭建ElementUI前端项目后提示: Access to XMLHttpRequest at **from origin ** has been blocked by CORS policy 这是因为在请求后台SpringBoot接口时出现了跨域请求问题。 本来打算是搭建好前端项目后再js中 ...
分类:
数据库 时间:
2019-12-08 21:28:34
阅读次数:
599
Git 常用命令速查表 创建版本库 修改和提交 查看提交历史 撤销 分支与标签 合并与衍合 远程操作 ...
分类:
其他好文 时间:
2019-12-08 17:49:07
阅读次数:
94