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

github使用小记

时间:2015-05-21 12:09:51      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

1.检查是否安装

$git --version

2.配置

$git config --global user.name "name"

$git config --global user.email "email@xxx.com"

3.创建SSH

$ssh-keygen -t rsa -C "email@xxx.com"

4.与远程库建立关联

$git remote add orgin https://github.com/user/repo.git

5.提交

$git push [-u] origin master

6.从远程库克隆

$git clone https://github.com/user/repo.git

 

github使用小记

标签:

原文地址:http://www.cnblogs.com/happydemo/p/4519059.html

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