知行网www.zhixing123.cn 编辑:麦田守望者
git命令的安装与github简单使用
时间:2013-09-25 01:51来源:知行网www.zhixing123.cn 编辑:麦田守望者
git的出现让传统的svn陷入尴尬的境地,分布式的版本控制是局势所需,svn目前也称要支持分布式,但至今依然是浮云。下面介绍安装git与简单实用,以github做例子。
安装
最简单,可以直接下载资源包,然后安装就好,如果是centos,可以实用yum命令安装:
# yum install git git-gui
注册github
打开github站点github.com根据提示注册就好,免费的
导入公钥
首先,要生成公钥
# ssh-keygen -t rsa -C "你注册github所用的邮箱地址"
查看公钥
# cat ~/.ssh/id_rsa
复制它,然后在github右上角点击设置按钮
点击左侧菜单栏的 SSH keys 项,打开SSH keys 管理页面,然后在key管理页面中点击 Add SSH key 添加公钥
在弹出的dialog中,Title随意填写,key栏复制你在linux机器上创建的公钥
账号配置
# git config --global user.name "用户名" # git config --global user.email github注册的邮箱地址
配置好了以后,执行以下命令校验
# ssh [email protected]
如果提示:
PTY allocation request failed on channel 0
Hi lizhong8532! You‘ve successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
表示验证通过。
创建github仓库
我们创建一个test仓库
复制test仓库ssh git地址,提交需要用
创建项目目录
[[email protected] ~]# mkdir test [[email protected] ~]# cd test
初始化:
[[email protected] test]# git init Initialized empty Git repository in /root/test/.git/
创建README.md文件
[[email protected] test]# echo "这是一个测试的案例" > README.md
提交到本地
[[email protected] test]# git add . [[email protected] test]# git commit -m "第一次提交" [master (root-commit) c9206dc] 第一次提交 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 README.md
其中git add . 中的点表示提交这个项目下所有文件,也可以直接指定文件 git add README.md
提交到github
以上,只是提交到本地版本库,github仓库上还没有文件,现在提交到github
[[email protected] test]# git remote add origin [email protected]:lizhong8532/test.git [[email protected] test]# git push -u origin master Counting objects: 3, done. Writing objects: 100% (3/3), 255 bytes, done. Total 3 (delta 0), reused 0 (delta 0) To [email protected]:lizhong8532/test.git * [new branch] master -> master Branch master set up to track remote branch master from origin.
其中,[email protected]:lizhong8532/test.git是我的test仓库的提交地址,你需要改成你的test仓库地址就好。
然后刷新你的仓库,就能看见刚才提交的文件了