摘要: 递归清除本地文件夹下的Git文件,如果想重新建立仓库,那么在重新初始化新建的git仓库 //删除文件夹下的所有 .git 文件 find . -name ".git" | xargs rm -Rf 阅读全文
posted @ 2020-05-13 17:24 退役产品汪 阅读(1987) 评论(0) 推荐(0) 编辑
摘要: follow up on blow command to do : sudo apt install apt-transport-https ca-certificates curl software-properties-commonsudo add-apt-repository "deb [ar 阅读全文
posted @ 2020-05-13 13:58 退役产品汪 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Ubuntu更改密码步骤:1、进入Ubuntu,打开一个终端,输入 sudo su转为root用户。 注意,必须先转为root用户!!!2、sudo passwd user(user 是对应的用户名)3、输入新密码,确认密码。4、修改密码成功,重启,输入新密码进入Ubuntu。 阅读全文
posted @ 2020-05-13 11:34 退役产品汪 阅读(2341) 评论(0) 推荐(0) 编辑
摘要: centos installation: 1. sudo yum install -y curl policycoreutils-python openssh-server2.wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gi 阅读全文
posted @ 2020-05-13 10:47 退役产品汪 阅读(185) 评论(0) 推荐(0) 编辑