Windows下github使用
1. 下载git客户端
这里用msysgit 下载地址
2. 创建项目
登录github,点击New repository
Repository name:Hello-World
$ git config --global user.name "YourName"
$ git config --global user.email "YourE-mail"
$ git config --lis
$ cd ~/github/ #在该文件夹中管理github项目
$ mkdir Hello-World #在本地建对应的repository
$ cd Hello-World/
$ git init
$ touch README.md
$ git add README.md
$ git commit -m 'first commit' #提交记录说明
$ git remote add origin https://github.com/YourName/Hello-World.git
$ git push origin master
3. 创建SSH KEY
3.1 检查原有密钥
$ cd ~/. ssh #检查本机的ssh密钥
如果有此文件夹,说明不是第一次使用,执行下面的操作,清理原有ssh密钥。
$ mkdir key_backup
$ cp *_rsa* key_backup
$ rm *_rsa*
3.2 生成新的密钥
$ ssh-keygen –t rsa –C "YourName@xxx.com"
这里的邮箱是自己的邮箱地址,回车之后会让你输入保存密钥的文件名,这里输入id_rsa。最后会得到id_rsa和id_rsa.pub两个文件,前者是私钥,后者是公钥。
3.3 添加密钥
添加私钥到ssh:
$ ssh-add id_rsa
如果报错:Could not open a connection to your authentication agent.
先执行一下:
$ ssh-agent bash
再执行 ssh-add id_rsa。
将公钥添加到github中,Personal settings中选择SSH keys,在New SSH Key中Title填写本机的名字,Key是把公钥文件的内容贴进来。
3.4 测试一下
$ ssh git@github.com
如果出现下面内容,说明连接成功了
PTY allocation request failed on channel 0
Hi YourName! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
如果出现如下的问题
ssh_exchange_identification: read: Software caused connection abort
可以使用
$ ssh git@github
The authenticity of host 'github (10.254.180.205)' can't be established.
ECDSA key fingerprint is SHA256:BJamnZU+s3Xtgo/m13oBw9hw6CBdMUtnkCKeZJq0knU.
Are you sure you want to continue connecting (yes/no)? **yes**
Warning: Permanently added 'github,10.254.180.205' (ECDSA) to the list of known hosts.
PTY allocation request failed on channel 0
Hi ***! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github closed.
出现上述结果也表明连接成功了。
4 开始使用
4.1 获取源码
$ git clone https://github.com/Eaton18/Hello-World.git
后面的链接是项目在github中的地址。
4.2 获取版本更新
假如本地已经存在了这个项目,而仓库中又有更新,获取更新:
$ git fetch origin #取得远程更新,这里可以看做是准备要取了
$ git merge origin/master #把更新的内容合并到本地分支/master
4.3 提交本地修改的版本
本地编辑了项目之后,将当前版本上传到仓库中
$ git add *
$ git status #可以看到我们对哪些文件做了修改
$ git push origin master
4.4 删除仓库中的文件
$ git status
$ git rm hehe/hello.txt
$ git commit -m 'del txt'
$ git push origin master