标签:stat strong git clone status ini linu git add 基本操作 状态
1、初始化
git init 在当前目录文件夹下
2、复制github项目:
git clone [地址]
3、添加文件;
git add file1 file2
4、文件删除:
git rm file1 file2
5、文件移动(修改名称与linux相似):
git mv file1 file2
6、提交
git commit -am 最为直接不用提交到缓存区
7、查看git状态
git status
标签:stat strong git clone status ini linu git add 基本操作 状态
原文地址:https://www.cnblogs.com/learningwu/p/12482878.html