Git的简单工作流程
想用开源中国上面的git,用Xcode连接git@osc。开始参照了老左的博客,但是后来做到关联Xcode时候,commit时,总是提示密码错误。自己总结了一下如果关联的方法。
生成SHH秘钥
打开终端命令工具,输入命令:ssh-keygen -t rsa -C”bjlidaxx@163.com";
注意ssh-keygen没有空格。屏幕会输出:
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/diaosi/.ssh/id_rsa):bjlidaxx
在上方输入生成额秘钥文件名,如bjlidaxx,屏幕输出:
Enter passphrase (empty for no passphrase): 输入密码
Enter same passphrase again: 确认密码
Your identification has been saved in bjlidaxx.
Your public key has been saved in bjlidaxx.pub.
The key fingerprint is:
25:fd:01:00:89:98:49:bf:2e:ac:32:2e:d2:5d:bf:98 bjlidaxx@163.com
The key's randomart image is:
+--[ RSA 2048]----+
| ..+ ..o... |
| +.. . . . |
| . . o . |
| . o . . |
| . S . |
| . . . |
| .o... . |
|=.... o. |
|*o E .. |
+-----------------+
屏幕提示生成密钥文件成功,保存在/Users/diaosi文件夹下。
把bjlidaxx.pub中的内容加入git@osc的SSH秘钥中
添加SSH并连接
输入命令:ssh-add ~/bjlidaxx
~/bjlidaxx 是刚刚生成的密钥文件路径,屏幕输出:
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 , peant_iOS!
Check out an existing project
利用Xcode的欢迎界面中的Check out an existing project 按钮来检出你在git@osc中创建的项目
然后输入你的git@osc项目地址
选择你想要存放git@osc项目的路径,也相当于你这个项目在本地建立了一个存放的库(我是这么理解的)
然后check out。
如下图:
建立项目
你想将你的项目提交到git@osc的话,项目一定要保存到GitDemoShow目录下(也就是检出(check out)的项目目录下)
把项目提交到本地:
File->Source Control->Commit
把项目提交到git@osc :
File->Source Control->Push
然后push。