同步github数据
首先要进入仓库文件夹
- 新建仓库文件夹要初始化或将远程仓库clone下来
git init
或git clone https://github.com/用户名称/仓库名称.git
- 新建仓库文件夹连接的账号
git config --global user.email "[email protected]"
git config --global user.name "your name"
- 将制定提交到临时仓库
git add .
或者git add -A
可以单独文件 - 本次提交的注释,双引号里面的内容可以根据个人的需要
git commit -m "first commit"
- 确认当前分支名称,重命名主分支名称main(master不再了)
git branch -M main
- 将本地仓库关联到github
git remote add origin git clone https://github.com/用户名称/仓库名称.git
- 将代码上传到git仓库
git push -u origin main