码迷,mamicode.com
首页 > Web开发 > 详细

Github上传项目

时间:2021-06-30 18:00:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tao   date   origin   commit   http   gmail   https   download   settings   

1. 登录github并创建一个仓库

2. 安装git客户端

2.1 下载git
	官网:git-scm.com/download/
	镜像:https://npm.taobao.org/mirrors/git-for-windows/?utm_source=qq&utm_medium=social&utm_oi=793691189428776960
2.2 安装git
2.3 绑定用户
	git config --global user.name xiaoMin
	git config --global user.email xiaoMin@gmail.com

3. 设置ssh密钥

3.1 生成ssh
	cd ~/.ssh
	ls
	找到.pub结尾的文件
		3.1.1 如果没有生成 ssh-keygen -t rsa -C xiaoMin@gmail.com
3.2 为github配置ssh密钥
	settings ——> SSH and GPG keys

4. 上传项目到github

4.1 创建本地项目
4.2 执行指令
	git init 
	git add .
	git commit -m **"update"**

4.3 关联github仓库
	git remote add origin **git@github.com:547343578/xxx.git**
4.4 上传本地代码
	git push -u origin master

Github上传项目

标签:tao   date   origin   commit   http   gmail   https   download   settings   

原文地址:https://www.cnblogs.com/191080438qq/p/14952184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!