码迷,mamicode.com
首页 > 其他好文 > 详细

github 入门

时间:2014-07-16 22:52:33      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   文件   

1 注册github 账号后登陆。

2 创建一个新的项目 , 点击Github 首页的右下角 ”New repository“ 按钮

bubuko.com,布布扣

填写你的项目名和项目的描述,点击”Create repository“ 按钮创建

bubuko.com,布布扣

3 给github 配置ssh 信任关系。

Linux 环境要先生成 公钥和秘钥

ssh-keygen 

一直回车就可以了,它会在当前用户的HOME 目录下生成 .ssh 目录

cat  /root/.ssh/id_rsa.pub

cat 一下公钥 ,将公钥信息保存在github 的ssh 管理当中

Github 首页,点击 右边的 “Account settting” 按钮

bubuko.com,布布扣

点击左手边的 ”SSH keys“

bubuko.com,布布扣

点击”Add SSH key”

bubuko.com,布布扣

Title 随便写一个就好了,Key 就是刚才的公钥信息,填写好了,点击“Add key”

bubuko.com,布布扣

测试能否和Github 连通

ssh –T git@github.com

在Linux 上新建和一个文件夹存放 Github的文件

mkdir -p /opt/github
cd /opt/github

4 安装git ,安装方法参考github 官网介绍

http://git-scm.com/download/linux

配置 Github 账号

git config --global user.name "用户名"
git config --global user.email github注册的邮箱地址

5 初始化github 配置

git init

6 git 操作

连接一个github 项目

git remote add origin https://github.com/chenfool/test.git

 

新增一个文件,并且提交给Github

echo "hello github" > /opt/github/test.txt
git add /opt/github/test.txt
git commit /opt/github/test.txt -m "this is a test"
git push origin master

再到github 上去刷新一下页面,就能看到有一个新文件上存到服务器上了

 

 

github 入门,布布扣,bubuko.com

github 入门

标签:style   blog   http   color   os   文件   

原文地址:http://www.cnblogs.com/chenfool/p/3835486.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!