Xcode连接[email protected]

Git初体验

http://my.oschina.net/dxqr/blog/134811

网友整理的[email protected]教程

http://git.oschina.net/oschina/git-osc/wikis/help#toc_19

[email protected]工作流程

http://git.oschina.net/oschina/git-osc/wikis/help

安装设置 git
下载最新版本的git
http://git-scm.com/downloads
当你安装完成git的时候,你需要简单的配置一下,打开终端:
用户名
第一步,你需要告诉git你的名字,这个名字会出现在你的提交记录中。
git config --global user.name "你的名字"
Email
然后是你的Email,同样,这个Email也会出现在你的提交记录中,请尽量保持此Email和您的[email protected]的注册Email一致。
git config --global user.email "你的Email"
Clone 和 Push
Clone 项目
git clone http://git.oschina.net/xxxxxx/xxxxxx.git
创建特性分支
git checkout -b $feature_name
写代码,提交变更
git commit -am "My feature is ready"
将你的提交推送到 Git@OSC 
git push origin $feature_name
在提交页面你可以查看你的变更,例如:
http://git.oschina.net/oschina/git-osc/commit/f3dd1c5bae48fa4244e2595a39e750e5606dd9be
命令示例

git clone [email protected]:openswc/gobang.git //ssh 链接

git remote add origin [email protected]:openswc/gobang.git
git add .
git commit -am "gobang first commit"
git push origin master

SSH Keys
SSH key 可以让你在你的电脑和 Git @ OSC 之间建立安全的加密连接。
你可以按如下命令来生成sshkey
ssh-keygen -t rsa -C "[email protected]"# Creates a new ssh key using the provided email
# Generating public/private rsa key pair...
查看你的public key,并把他添加到 Git @ OSC http://git.oschina.net/keys
cat ~/.ssh/id_rsa.pub
# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....
首先在Git Bash中输入:
ssh-keygen -t rsa -C "[email protected]"
然后一路回车,这个会在当前用户文件夹下,生成.ssh 文件夹,里边有个 id_rsa.pub文件,用记事本打开,复制其中的全部内容。
然后打开http://git.oschina.net/keys页面,在该页面中添加公钥,标题可以随便填,公钥就是刚才复制过的内容,然后保存即可
我们在http://git.oschina.net/projects/new中添加一个新项目,比如GitHelloWolrd(这个名称后面会用到,这个步骤是必须的)
我们先来测试下是否联通:输入命令
ssh -T [email protected]
然后会通知你输入用户名/密码,该密码就是你的osc账户密码,然后会提示你输入yes/no,输入yes后回车,显示出
Welcome to Git@OSC , whaon!
说明连接成功(密码也可以在http://git.oschina.net/profile/account进行设值)
 
配置Git
首先在本地创建ssh key;
$ ssh-keygen -t rsa -C "[email protected]"
后面的[email protected]改为你的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的所有的内容也即key。
回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。为了验证是否成功,在git bash下输入:
$ ssh -T [email protected]
如果是第一次的会提示是否continue,输入yes就会看到:You’ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们。
$ git config --global user.name "your name"
$ git config --global user.email "[email protected]"

[email protected]安装与提交
安装我是通过windows.github.com下载的客户端
在git中我先建立一个test项目;
在下载完的客户端git命令行克隆test  也就是下载下来(git clone http://git.oschina.net/zhuomo/test.git)自己的HTTP地址;
在命令行cd test 进入到当前目录
之后在这个目录下我是相应的创建文件,之后(git add) 
然后 放到远程仓库 (git pust origin master)
Username为oschina的用户名
Password为oschina的密码

时间: 2024-10-05 07:35:14

Xcode连接[email protected]的相关文章

Xcode连接[email protected] (oschina git代码托管)

Xcode 已经集成了git,建立新项目时钩选使用git,然后按照下面步骤让Xcode和git@osc 建立连接. 第一步:成生SSH密钥 打开终端命令工具,输入命令:ssh-keygen -t rsa -C "[email protected]" 注意ssh-keygen没有空格.屏幕输出: Generating public/private rsa key pair. Enter file in which to save the key (/Users/diaosi/.ssh/i

IDEA GIT连接[email protected]

Git介绍请关注 廖雪峰的官方网站查看说明或是在Oschina中查看帮助 ? IDEA配置: 首先安装git for windows?推荐使用这个:http://msysgit.github.io/? 可以在任何目录 右键--git bash 弹出对应路径的 git 命令行窗口 而且启动速度比较快 在Intellij中Settings--Version Control--Git--Path to Git executable 找到安装git ?bin目录下的git.exe 1.方法一 ?适用于新

连接[email protected]操作步骤

一.准备工作 软件下载 Git:地址 TortoiseGit:地址 二.安装与配置 1.Git安装 Git配置 设置客户端的用户名和email 然后,到[email protected] 上面注册一个帐号. 这个帐号就是设置客户端的eamil 下一步,根据eamil生成key 生成key的命令 ssh-keygen -t rsa -C "youer email" 如果命令无误执行后,会在当前用户文件夹下,建立一个.ssh的文件夹,文件夹中有两个文件分别是id_rsa和id_rsa.pu

xcode中 [email protected] 图片问题

低版本 加载的启动图片为该图片.(320*480) iphone(Portrait) Launch Screen的规格: none Default.png (320 x 480) iPhone 3GS [email protected] (640 x 960)就是iphone4/4s使用的 [email protected] (640x 1136) iphone5/5s [email protected] (750 x 1334) iphone6 [email protected] (1242

Showing All Messages : error: open /Users/apple/Library/Developer/Xcode/DerivedData/PDoctor-dkhmpttmnuppvbcxijlcxacfpzcl/Build/Products/Debug-iphoneos/PDoctor.app/EaseUIResource.bundle/[email protected]: N

2报错 Showing All Messages : error: open /Users/apple/Library/Developer/Xcode/DerivedData/xxx-dkhmpttmnuppvbcxijlcxacfpzcl/Build/Products/Debug-iphoneos/xxx.app/EaseUIResource.bundle/[email protected]: No such file or directory 解决: 把文件夹这里边删除掉   /Users/

$ ssh -T -v [email protected]_在本地用ssh连接github出错[email protected]: Permission denied (publickey).

$ ssh -T -v [email protected]报错: debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey debug1: Trying private key: /Users/eveline/.ssh/id_rsa debug1: Trying private key: /Users/eveline/.ssh/id_dsa debug1:

使用Mac OS X 终端连接[email protected]

环境准备: Xcode(直接AppStore下载安装) Git(可以在http://code.google.com/p/git-osx-installer/下载git安装程序,或者在https://www.kernel.org/pub/software/scm/git/下载源码安装.) 源码安装过程: 解压源码包 tar xjvf git-1.8.3.tar.bz2 编译 cd git-1.8.3 ./configure --prefix=/usr/local make 安装 sudo make

iOS开发核心语言Objetive C —— 编译器指令@[email protected]自定义构造方法及类工厂

本分享是面向有意向从事iOS开发的伙伴们,或者已经从事了iOS的开发者.如果您对iOS开发有极高的兴趣,可以与我一起探讨iOS开发,一起学习,共同进步.如果您是零基础,建议您先翻阅我之前分享的iOS开发分分钟搞定C语言系列,然后在开始Objective C语言的学习,如果您遇到问题也可以与我探讨,另外将无偿分享自己整理的大概400G iOS学习视频及学习资料,都是干货哦!可以新浪微博私信?关注极客James,期待与您的共同学习和探讨!!由于时间有限,每天在工作之余整理的学习分享,难免有不足之处,

Xcode连接 Git

Xcode 已经集成了git,建立新项目时钩选使用git,然后按照下面步骤让Xcode和git@osc 建立连接. 第一步:成生SSH密钥 打开终端命令工具,输入命令:ssh-keygen -t rsa -C "[email protected]" 注意ssh-keygen没有空格.屏幕输出: Generating public/private rsa key pair. Enter file in which to save the key (/Users/diaosi/.ssh/i