# Using GIT In Xcode

DevFeed: [Using GIT In Xcode](<https://devfeed.tech/articles/using-git-in-xcode-37495.md>)

Original publisher: [Read original article](<https://www.cimgf.com/2013/12/10/using-git-in-xcode/>)

Author: Joe Keeley

Published: 2013-12-10T06:50:31Z

Content type: tutorial

Language: en

Sources: [Cocoa Is My Girlfriend](<https://devfeed.tech/sources/cocoa-is-my-girlfriend.md>)

Topics: [Git](<https://devfeed.tech/topics/git.md>), [Xcode](<https://devfeed.tech/topics/xcode.md>), [version-control](<https://devfeed.tech/topics/version-control.md>), [iOS](<https://devfeed.tech/topics/ios.md>), [Development](<https://devfeed.tech/topics/development.md>)

Tags: [bitbucket](<https://devfeed.tech/tags/bitbucket.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [commit](<https://devfeed.tech/tags/commit.md>), [development-environment](<https://devfeed.tech/tags/development-environment.md>), [git](<https://devfeed.tech/tags/git.md>), [github](<https://devfeed.tech/tags/github.md>), [ios](<https://devfeed.tech/tags/ios.md>), [merge](<https://devfeed.tech/tags/merge.md>), [undocumented](<https://devfeed.tech/tags/undocumented.md>), [version-control](<https://devfeed.tech/tags/version-control.md>), [xcode](<https://devfeed.tech/tags/xcode.md>)

## AI overview

This tutorial explains how to use Xcode 4.6.2 for Git workflows in iOS and Mac development. It covers creating local repositories, making an initial commit, and connecting projects to remote repositories such as GitHub or Bitbucket.

## Source excerpt

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. [...]