git的使用
摘要:
git init //把这个目录变成Git可以管理的仓库 git add README.md //文件添加到仓库 git add . //不但可以跟单一文件,还可以跟通配符,更可以跟目录。一个点就把当前目录下所有未追踪的文件全部add了 git commit -m "first commit" //把文件提交到仓库 git remote add origin git@githu... 阅读全文
posted @ 2018-04-19 17:42 高彰 阅读(86) 评论(0) 推荐(0) 编辑