- git clone https://github.com/JasonCheung2012/learngit.git #版本库网址
- git add zhangjiethu.txt
- git commit -m "add a file"
- git push -u origin master #将你本地的仓库提交到你的github账号里,此时会要求你输入你的github的账号和密码
- git status #查看工作区、版本库(暂存区、当前分支)的状态
- git checkout master zhangjie.txt #将工作区的恢复成master中的,及时之前暂存区有东西,现在也和工作区一起空了
- git rm #与git rm相对,当删除文件时使用,之后同样的commit
时间: 2024-10-13 07:17:01