1. clone
git clone http://xxx.com
2. 添加新文件
git add . (添加所有的)
or git add (目录)
3. 提交代码
git commit -m "注释"
4. 提交至master (完成)
git push -u origin master
5. 添加分支
git checkout -b login
6. 查看状态
git statusd
2024-01-12 13:51:28
git clone http://xxx.com
git add . (添加所有的)
or git add (目录)
git commit -m "注释"
git push -u origin master
git checkout -b login
git statusd