摘要: git init //初始化本地仓库 git add . //添加所有文件到本地仓库 git commit -m "first commit" 提交 git remote add origin http://smartcost.f3322.net:3000/wangfeng/scexam_Andro 阅读全文
posted @ 2018-11-12 16:47 呼啸而过 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 递归清除本地文件夹下的Git文件,如果想重新建立仓库,那么在重新初始化新建的git仓库 //删除文件夹下的所有 .git 文件 find . -name ".git" | xargs rm -Rf //初始化仓库 git init 阅读全文
posted @ 2018-11-12 11:47 呼啸而过 阅读(4680) 评论(0) 推荐(0) 编辑