首页 > 其他 > 详细

【转】Xcode托管代码到oschina中的教程

时间:2014-01-23 16:52:52      阅读:409      评论:0      收藏:0      [点我收藏+]

Xcode 已经集成了git,建立新项目时钩选使用git,然后按照下面步骤让Xcodegit@osc 建立连接。

第一步:成生SSH密钥

打开终端命令工具,输入命令:ssh-keygen -t rsa -C "diaosi@gmail.com"

注意ssh-keygen没有空格。屏幕输出:

Generating public/private rsa key pair.

Enter file in which to save the key (/Users/diaosi/.ssh/id_rsa):diaosi

在上方输入生成的密钥文件名,如diaosi,屏幕输出:

Enter passphrase (empty for no passphrase): 输入密码

Enter same passphrase again: 确认密码

Your identification has been saved in diaosi.

Your public key has been saved in diaosi.pub.

The key fingerprint is:

25:fd:01:00:89:98:49:bf:2e:ac:32:2e:d2:5d:bf:98 diaosi@gmail.com

The key‘s randomart image is:

+--[ RSA 2048]----+

| ..+ ..o...      |

|  +.. .  . .     |

|    .   . o .    |

|     .   o . .   |

|    .   S   .    |

| . .  .          |

| .o... .         |

|=....  o.        |

|*o    E ..       |

+-----------------+

屏幕提示生成密钥文件成功,保存在/Users/diaosi文件夹下。

第二步:把diaosi.pub中的内容加入git@osc SSH密钥中

 

bubuko.com,布布扣

 

 

第三步:添加SSH并连接

 

输入命令:ssh-add ~/diaosi

~/diaosi 是刚刚生成的密钥文件路径,屏幕输出:

Enter passphrase for /Users/diaosi/diaosi:输入密码

Identity added: /Users/diaosi /diaosi (/Users/diaosi /diaosi)

输入命令ssh -T git@git.oschina.net,屏幕输出:

The authenticity of host ‘git.oschina.net (58.215.179.44)‘ can‘t be established.

RSA key fingerprint is 14:b8:b8:0b:c2:b2:5e:ae:f2:21:f8:18:4d:3a:be:fc.

Are you sure you want to continue connecting (yes/no)? yes(输入yes),屏幕输出:

Warning: Permanently added ‘git.oschina.net,58.215.179.44‘ (RSA) to the list of known hosts.

Welcome to Git@OSC , 老左!

第四步:设置个人信息

输入命令:

git config –global user.name “diaosi”  (有两个-号)

git config –global user.email diaosi@gmail.com

第五步:设置项目

获取git@osc 上的项目路径。

=====================

若xcode工程在当时新建的时候没有勾选git也没事,几句话就可以在现有的工程中建立git管理:

cd到工程目录:

git init

git add .

git commit -m ‘initial’

【转】Xcode托管代码到oschina中的教程

原文:http://www.cnblogs.com/wengzilin/p/3530712.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!