admin 管理员组文章数量: 887021
##一、安装msysGit
- 下载安装包,网址Git下载,这里我使用的是Git-2.12.1版本
- 安装过程:双击
.exe
文件,单击next
,出现组件选择界面,由于所有默认组件都已勾选,可以直接进入next
,选择Use Git Bash only
, 点击next
,直到程序安装。
##二、初始设置
1. 设置姓名和邮箱地址:
打开git bash 命令框,输入如下命令:
$ git config --global user.name "Firstname Lastname "
$ git config --global user.email "you_email@example"
这个命令会在~/.gitconfig
中输出设置文件,如需更改可直接编辑这个设置文件。由于GitHub上公开仓库时这里的姓名和邮箱也会被公开,所以尽量不要使用不便公开的信息。
###2. 提高命令输出的可读性
将 color.ui
设置为auto
:
$ git config --global color.ui auto
##三、使用前的准备
###1.创建账户
打开github注册页面,进行注册
###2.设置SSH Key
输入:
$ ssh-keygen -t rsa -C "you_email@example"
输出:
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/wth/.ssh/id_rsa): (回车)
Created directory '/c/Users/wth/.ssh'.
Enter passphrase (empty for no passphrase):(输入密码)
Enter same passphrase again:(再次输入密码)
再次输出:
Your identification has been saved in /c/Users/wth/.ssh/id_rsa.(私有秘钥)
Your public key has been saved in /c/Users/wth/.ssh/id_rsa.pub.(公开密钥)
The key fingerprint is: ****
The key's randomart image is: ***
###3.添加公开密钥
在github中添加公开密钥就可以用私有秘钥进行认证了
点击github网站右上角Settings
,进入SSH and GPG Keys
菜单,设置 Title
和 Key
,key
部分的内容粘贴id_rsa.pub文件里的内容。
查看id_rsa.pub内容的命令:
$ cat ~/.ssh/id_rsa.pub
完成以上设置,就可以用私人秘钥与github进行认证和通信了
检验:
$ ssh -T git@github
输入第2步中设置的密码就会显示:
Hi bigdatanjupt2017! You've successfully authenticated, but GitHub does not provide shell access.
##四、使用
###1.创建仓库
点击New repository
**这里需要注意的是
Initialize this repository with a README
,如果勾选了,github会自动楚书画仓库病设置README文件,让用户可以立刻克隆这个仓库,如果是想添加已有的git仓库,建议不勾选,手动push
点击 Create repository
即创建成功,生成对应仓库的网页。
##五、公开代码
###1.clone 已有仓库
$ git clone git@github:bigdatanjupt2017/helloworld.git
$ cd helloworld
###2.编写代码
在上面创建的文件夹中编写自己需要编写的代码文件:
查看git状态命令
$ git status
###3.提交
$ git add hello_world.py (暂存)
$ git commit -m "Add hello word script by python" (提交)
$ git log (查看提交日志)
###4.push
$ git push
至此我们就可以在github上查看自己编写的代码了。
版权声明:本文标题:windows7环境下使用github教程(1) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1715966512h660178.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论