1、创建远程仓库
2、初始化本地仓库git init git add . git commit -m "desc"
3、关联远程仓库 git remote add origin https://gitee.com/lp369/mypython.git
4、第一次先拉取远程库中的README.md和.gitignore等文件 git pull --rebase origin master
5、提交本地代码git push origin master
原文地址:https://www.cnblogs.com/lp0636/p/10569816.html
时间: 2024-11-07 03:16:44