github配置

       git是一个强大的版本控制器。现在不少公司都在使用他。使用及其的方便。GitHub 是一个用于使用Git版本控制系统的项目的基于互联网的存取服务。GitHub是最流行的Git存取站点。下面我介绍一下github的配置。

1.git设置

在git官网上下载git对应的版本,我是用的linux系统。当然你一个可以使用安装源的形式来进行安装。将git安装好以后需要进行一下配置。

首先你需要告诉git你的名字,以便于正确的标注你提交的内容。

git config --global user.name "Your Name Here" # Sets the default name for git to use when you commit

然后是填写你的邮件地址。如果有什么情况方便联系到使用者。配置如下:

 

git config --global user.email "[email protected]"# Sets the default email for git to use when you commit

2.github上的相关设置

登录github,并且创建自己的仓库。同时使用ssh生成密钥并且把公钥上传到github上面。 这样你就可以把你本地的东西上传到github上面了。#ssh-keygen -t rsa -C "[email protected]",将.ssh/id_rsa.pub拷贝到GitHub网站(点击account setings进入选中SSH进行拷贝)。

为了方便,设置ssh不输入口令
# eval `ssh-agent`
# ssh-add

测试是否能联通GitHub
#ssh [email protected]

如果配置正确,显示
ERROR: Hi xxx! You've successfully authenticated, but GitHub does not provide shell access
Connection to github.com closed.

设置Git全局用户配置
# git config --global user.name "xxx"
# git config --global user.email [email protected]

定义远程服务器别名origin
#  git remote add origin [email protected]:xxx/new-project.git   
本地和远程合并,本地默认分支为master
# git push origin master  

GitHub网站上就可以看见了, http://github.com/xxx/new-project

更新文件
# vi README
自动commit更改文件
# git commit -a     
更新至远程
# git push origin master

创建和合并分支
#git branch 显示当前分支是master
#git branch new-feature  创建分支
# git checkout new-feature 切换到新分支
# vi page_cache.inc.php
# git add page_cache.inc.php
Commit 到本地GIT
# git commit -a -m "added initial version of page cache"
合并到远程服务器
# git push origin new-feature

如果new-feature分支成熟了,觉得有必要合并进master
#git checkout master
#git merge new-feature
#git branch
#git push 
则master中也合并了new-feature 的代码

再登录到GitHub可以看见"Switch Branches"下的分支选项:

 

你可能感兴趣的:(git配置)