[翻译] USING GIT IN XCODE [1] 在XCODE中使用GIT[1]

USING GIT IN XCODE

http://www.cimgf.com/2013/12/10/using-git-in-xcode/

Git has become a very popular version control system in iOS and Mac development. Git comes with a set of command line tools to check status, commit changes, view logs, make and merge branches, and coordinate commits with a remote repository.  There are a number of desktop apps that can perform these functions, including Xcode.  When I ask other iOS and Mac developers how they interact with Git, most say they use the command line or a separate desktop app like Tower.  I find very few developers use Xcode for even some basic Git tasks, and many developers are not aware of the Git support Xcode offers.

Git已经成为了非常流行的版本控制工具。Git是一系列的命令行工具,用以检查状态、提交更改、查看日志、创建和对比分支、并将源码远程提交到服务器上。有很多很多工具都能做这项事情,Xcode自身也有Git的功能。我问了很多iOS以及Mac的开发者他们是怎么使用Git的,大部分都说他们使用命令行工具,或者是一个独立的app例如Tower。我发现很少有人使用Xcode自带的Git来进行最基本的一些操作,还有,很多开发者根本就不知道Xcode自身就支持Git,提供了Git的相关服务。

For my own workflow, I like to minimize the number of tools used and number of switches between apps needed to complete a task.  So, I decided to attempt to use Xcode exclusively to interact with Git and share my results.  So far I have been pleasantly surprised at what all Xcode can do with Git. If you have not taken a look at Xcode’s support for Git, you may be surprised how much you can accomplish.

在我的大部分工程当中,我喜欢用最少的工具来控制不同版本的app。所以,我决定尝试一下使用Xcode自带的Git以及分享我的经验。至今为止,我发现Xcode可以用Git做到很多相当不错的功能。如果你还没有用过Xcode自带的Git,当你在使用它的时候也许会被惊艳到。

This article assumes basic familiarity with Xcode and Git, and describes Git functionality present in Xcode version 4.6.2.

这篇文章假定你熟悉Xcode以及Git的使用,文章中的Git的功能描述是在Xcode的4.6.2版本上进行的。

 

NEW GIT PROJECT SETUP IN XCODE

Since Git is a distributed version control system, a repository can be created locally when starting a project, or on a remote server and then cloned.  Xcode can handle both situations.

When creating a new Xcode project, you can include a local git repository by checking the “Create local git repository for this project” option.  Xcode will initialize the repository and perform an initial commit with the template files for you.

自从发布了Git这个版本控制工具之后,一个工程拷贝既可以在本地创建,也可以通过从服务器的拷贝来完成。Xcode能处理这两种情形。

当在创建一个新的Xcode工程项目时,你可以在选项 Create local git repository for this project 来包含一个本地的git拷贝。Xcode会初始化这个拷贝并获取到文件供你使用。

If you are sharing your project with a team or just want a backup of your project on another machine, you can set up a remote copy of the repository.  The typical way this is done is to create an empty repository on a git service like GitHub or Bitbucket.  Once the repository is available, return to Xcode and open the Organizer. Select Repositories to view all the version control repositories that Xcode is aware of, and find the new project repository.  Select Remotes for the new project, add then click the Add Remote button.

如果你是团队开发,或者仅仅只想在另外的一台电脑上获取一个拷贝,你可以创建一个远程的拷贝。常用的方式是在Github或者Bitbucket上创建一个空的拷贝。一旦这个拷贝可以被你使用了,回到Xcode后打开Organizer。选择 Repositories 后可以查看所有你可以操作的版本,然后找到创建新版本那一项,然后点击 Add Remote 按钮添加。

Xcode will present a dialog to add the remote. You can follow the default naming standard for a git remote and give it the name “origin”, or you use a custom name.  Then specify the remote URL for the repository, which will be provided by Bitbucket.

Xcode会显示一个提示框来添加远程版本,你可以根据默认值给个名字抑或自己起个名字。然后,你提供一个远程版本的URL地址,这个地址是由远程服务器提供的(比如Github或者Bitbucket)。

If the remote repository is private and requires authentication, you can enter it after the remote is added.  Select the remote in the Organizer list, and an authentication interface will appear below the list.

如果这个远程的版本是私有的需要你提供验证信息,你可以在添加完了之后输入验证信息。你在Organizer选择这个远程版本,一个提示框会提示你输入信息的。

Once the remote is added and authentication provided, the master branch needs to be pushed to it.  Return to the Xcode project window.  From the Xcode menu, select File | Source Code | Push… Xcode will present a sheet which will allow you to select a remote to push to, and a branch to push.  Note that Xcode has checked with the remote repository, and indicates that the master branch will be created in the remote repository with the push.

一旦远程的版本被添加了,你也输入了验证信息,你就需要选择要push的主分支了。回到Xcode工程当中,在Xcode菜单中,选择 File | Source Code | Push… Xcode 后会出现提示框,让你选择一个版本来作为你push所用。

Once the push is complete, the remote repository is available for updates and for other users.

一旦push操作成功了,你就可以使用这个远程版本用来提交代码了。

时间: 2024-12-27 06:05:52

[翻译] USING GIT IN XCODE [1] 在XCODE中使用GIT[1]的相关文章

[翻译] USING GIT IN XCODE [5] 在XCODE中使用GIT[5]

USING GIT IN XCODE USING BRANCHES Branches can be a very effective tool to isolate new features or experiments in code.  Xcode has pretty good support for branches, but it is not shown in the project view.  The first method you can use to commit code

[翻译] USING GIT IN XCODE [3] 在XCODE中使用GIT[3]

USING GIT IN XCODE MAKING AND COMMITTING CHANGES Once you have a working copy of your project, it's time to get to work.  As you make changes to the project, Xcode will indicate when files have been changed from the working copy. 当你成功的将项目复制到了本地,现在就可以

xcode 左边导航栏中符合含义详解_IOS

xcode 左边导航栏中符合含义详解 "M" = Locally modified    "U" = Updated in repository  "A" = Locally added    "D" = Locally deleted    "I" = Ignored  "R" = Replaced in the repository  "–" "=&qu

sdk-xcode中使用git提交时报错The working copy"H5Service.bundle"

问题描述 xcode中使用git提交时报错The working copy"H5Service.bundle" The working copy"H5Service.bundle" failed to commit files.我用到了芝麻信用的SDK,需要导入H5Service.bundle,使用没问题,但是git提交时报了这么个错误,有知道怎么解决的吗? 解决方案 这个文件没意见加到版本控制吧 git add添加

Git详解之四:服务器上的Git

原文链接:http://blog.jobbole.com/25944/ 原文:<Pro Git> 服务器上的 Git 到目前为止,你应该已经学会了使用 Git 来完成日常工作.然而,如果想与他人合作,还需要一个远程的 Git 仓库.尽管技术上可以从个人的仓库里推送和拉取修改内容,但我们不鼓励这样做,因为一不留心就很容易弄混其他人的进度.另外,你也一定希望合作者们即使在 自己不开机的时候也能从仓库获取数据 - 拥有一个更稳定的公共仓库十分有用.因此,更好的合作方式是建立一个大家都可以访问的共享仓

git教程(二)--安装和配置git

转载:http://blog.csdn.net/gatieme/article/details/50586476 前言 GIT跟SVN一样有自己的集中式版本库或服务器.但,GIT更倾向于被使用于分布式模式,也就是每个开发人员从中心版本库/服务器上chect out代码后会在自己的机器上克隆一个自己的版本库.可以这样说,如果你被困在一个不能连接网络的地方时,就像在飞机上,地下室,电梯里等,你仍然能够提交文件,查看历史版本记录,创建项目分支等.对一些人来说,这好像没多大用处,但当你突然遇到没有网络的

[网摘收藏]Ubuntu中版本控制Git的使用

Git 使用规范 特别提醒: 使用Git过程中,必须通过创建分支进行开发,坚决禁止在主干分支上直接开发.review的同事有责任检查其他同事是否遵循分支规范. 在Git中,默认是不会提交空目录的,如果想提交某个空目录到版本库中,需要在该目录下新建一个 .gitignore 的空白文件,就可以提交了 [代码回溯注意]把外部文件纳入到自己的 Git 分支来的时候一定要记得是先比对,确认所有修改都是自己修改的,然后再纳入.不然,容易出现代码回溯 [代码回溯注意]多人协作时,不要各自在自己的 Git 分

《走进git时代系列三》详解部分git思想及SVN/GIT命令对比解析

之前写了一篇 走进git时代一之你该怎么玩? , 主要是对git的特性做了个引导, 用户还是需要自己找资料系统的去学习. 所以补充一篇分享,稍微详细一点解释一下svn和git的差异性, 以及日常工作的命令对比 . 帮助大家在学习git的道路上更加清晰. 目录 再谈SVN/GIT思想差别带来的影响 你需要知道的SVN/GIT命令操作 首先还是要强调一下 : 在开始学习 Git 的时候,请不要尝试把各种概念和其他版本控制系统(SVN,P4等)相比拟,否则容易混淆每个操作的实际意义. Git 在保存和

UWP开发入门(十九)——10分钟学会在VS2015中使用Git

原文:UWP开发入门(十九)--10分钟学会在VS2015中使用Git 写程序必然需要版本控制,哪怕是个人项目也是必须的.我们在开发UWP APP的时候,VS2015默认提供了对微软TFS和Git的支持.考虑到现在Git很火,作为微软系的程序员也不得不学一点防身,以免被开源世界的家伙们嘲笑.蜀黍我Git也是菜鸟一只(还请老司机多多指点),只会用VS2015和SourceTree这样的GUI工具点一点按钮,但是我相信用惯了SVN和TFS的童鞋们,需要一点勇气去学习一些新东西,特别是Git已经形成潮