git安装和github使用
1、github账号申请
https://github.com/ 官方网站
注册github账号 点击 https://github.com/join?source=header-home
填写用户名、邮箱、密码,完成注册
2、git下载安装
https://gitforwindows.org/ window环境下的git下载并安装 Git-2.21.0-64-bit.exe
3、git 生成 SSH key id_rsa.pub
Git安装后,右键点击弹出 Git Bash Here 输入以下三条命令生成公私钥
用户名和邮箱就使用注册github的
git config --global user.name "xxx"
git config --global user.email "[email protected]"
ssh-****** -t rsa -C "[email protected]"
生成完秘钥之后会在 C:\Users\xxx\.ssh 目录下 id_rsa和id_rsa.pub 两个文件
拷贝id_rsa.pub文件内容到 git 服务器上就可以了
设置git ssh公钥到github中,打开你的github主页,找到Settings,
选择SSH and GPG keys ,再选择new SSH key,title 随意填,key值就是刚刚生成的本机 SSH KEY
4、TortoiseGit-2.8.0.0-64bit 下载安装 中文语言包安装
https://tortoisegit.org/download/ 下载地址,并下载中文语言包
安装完成后设置用户名和邮箱
5、github上创建自己的项目
打开github主页,选择 new repository,打开新建项目页面。
将仓库设置为public
生成后获取http地址 例如 https://github.com/nariwangchen/test.git
在本地通过http地址拉取新增项目
将新增代码添加到该工程下后使用TortoiseGit 提交推送代码到github库
推送成功后,可在github上看到更新