git环境配置

1、安装git;

2、找到安装路径,git 

配置账户邮箱;

ssh-keygen -t rsa -C "[email protected]"

在user文件夹下找到C:\Users\ll\.ssh,id_rsa.pub,打开,

复制里面的key.

3、登录github,Setting->SSH Keys->Add SSH Key

4、验证是否配置成功,在git bash 下输入

ssh -T [email protected]

提示:

You've successfully authenticated,表示连上github。

5、配置账户

git config --global user.name "your name"

git config --global user.name "[email protected]"

6、进入要上传的仓库,右键git bash,添加远程地址:

git remote add origin [email protected]:yourName/yourRepo.git

7、代码提交

git add

git add .

git commit -m "代码提交注释说明"

git push origin master

推送到远程仓库:

a.git push -u origin master(github仓库)

b.git push origin HEAD:refs/for/master

合并其他分支到当前分支:

git merge

git diff

补充:

a.创建一个本地仓库的克隆版本:

git clone /path/to/repository

b.远端服务器的仓库。

git clone username@host:/path/to/repository

参考:

1、Github 简明教程 | 菜鸟教程

2、https://www.cnblogs.com/wangcuican/p/12522239.html

3、GitHub - jaywcjlove/git-tips: 这里是我的笔记,记录一些git常用和一些记不住的命令。4、

4、添加文件到仓库 - GitHub 文档

你可能感兴趣的:(git)