进入目录后 输入 git init 初始化 git remote add origin +链接
用我的git仓库基本流程
1 git clone + git地址 将仓库代码克隆到自己本地
2 git checkout -b aa(你自己的分支名 不加-b 就是切换分支 加-b是切换并创建分支)
3 完成自己代码后
(1)git add . (添加代码到暂存区)
(2)git commit -m "记录本次添加的详情"
(3)git push origin aa(你前面的分支名字)
查看我的分支 比如叫pg
git checkout -b pg
git pull origin pg (拉取最新代码)