https://git-scm.com/download/win
登录 github 并点击 “New” 创建一个项目
输入项目名称、简介,点击 “Create repository”
进入项目的根目录,右击,选择 “Git Bash Here”
在弹出的窗口中运行如下命令
# 初始化
git init
# 添加当前目录下的所有文件到仓库
git add .
# 本次上传的备注说明
git commit -m "初次上传"
# 将本地仓库关联到你的 git 地址 gituser/project 改为你自己的信息
git remote add origin https://github.com/gituser/project.git
# 拉取内容
git pull origin master
# 上传代码到 github
git push -u origin master
如果在操作的过程中弹出了登录窗口,输入你的 github 账号、密码 点击 “ OK” 即可。
快打开你的 github 查看代码是否已经上传成功
# 将所有内容添加到仓库
git add *
# 更新说明
git commit -m "代码更新"
# 拉取内容
git pull
# 上传
git push origin master
© 2020 飞鱼的博客