git提交本地文件到码云

git提交本地文件到码云

1.本地的文件夹,鼠标右键选择git bash here
2.git init  初始化一个git仓库
3.git remote add origin https://gitee.com/ArLee      // 码云仓库地址
4. git add . 添加目录下所有项目
5.git commit -m “添加注释信息"
6.git push -u origin master -f 强制push

猜你喜欢

转载自blog.csdn.net/qq_41720311/article/details/83691683