1、拉取指定分支代码
git clone -b master https://gitee.com/ling195/hello-demo.git
2、添加文件(后边有个空格点)
git add .
3、提交到本地仓库
git commit -m "说明"
4、推送到远程仓库
git push origin master:master
1、拉取指定分支代码
git clone -b master https://gitee.com/ling195/hello-demo.git
2、添加文件(后边有个空格点)
git add .
3、提交到本地仓库
git commit -m "说明"
4、推送到远程仓库
git push origin master:master