Github代码管理之上传本地项目到Github
程序员文章站
2022-04-18 10:19:43
...
Github简单使用
- 上传本地项目到Github
- 准备
- 下载Git工具https://git-scm.com/downloads并安装
2、打开Git Bash建立与自己Github账号的连接
$ git config --global user.name "SyGoing"
$ git config --global user.email " aaa@qq.com "
- 创建SSH KEY
执行命令:ssh-****** -t rsa -C aaa@qq.com
无脑回车几下之后完成生成,接下来查看C:\Users\your username\.ssh中的id_rsa和id_rsa.pub
- 在自己的github账号上创建ssh key
上一步生成的id_rsa.pub内容复制到此处
- 上传项目到远程Github
- Github上新创建一个Github项目
- 打开Git Bash, cd到自己的项目文件夹下面,执行命令的快速教程官方已经给出
(1)本地项目操作:
1)本地项目的仓库创建:git init
2)添加本地项目文件到仓库:git add .(git add 文件名)
3)提交添加的项目到仓库:git commit -m “first commit”
(2) 项目上传
1)本地和远程仓库关联git remote add origin+your github website
2)提交前合并项目防止冲突 git pull --rebase origin master
3)首次提交(远程仓库为空):git push -u origin master(第一次提交)
4)非首次提交:git push origin master(第一次以后提交)
- 修改github上项目代码并push