Skip to content

Latest commit

 

History

History
102 lines (59 loc) · 2.82 KB

share-your-code-in-tfvc-xcode.md

File metadata and controls

102 lines (59 loc) · 2.82 KB

Share your code in TFVC using Xcode

Share your Xcode projects in Visual Studio Online using a TFVC repository by using the Git-tf command line tool to push your changes from the local Git repotory to TFVC.

Download and configure Git-tf
  1. Download and extract Git-tf.
  2. Add Git-tf and the Java runtime to your path.
export JAVA_HOME=/Library/Java/Home 
 export PATH=$PATH:$JAVA_HOME/bin:/git_tf
  1. Go to the root of your local repository.
pushd /ws/FabrikamFiber
  1. To share your Git repository in Visual Studio Online, configure the connection and check in your code. You'll be prompted for credentials.
git tf configure https://fabrikamfiber.visualstudio.com $/FabrikamFiber 
 git tf checkin

Or, if your team's code is already in Visual Studio Online, you can clone a local repository using Git-tf.

git tf clone https://fabrikamfiber.visualstudio.com $/FabrikamFiber
  1. If you don't want to be prompted for credentials every time you run Git-tf, you can store your credentials in your Git configuration.
git config git-tf.server.username [email protected] 
 git config git-tf.server.password mypassword
Share your code
  1. After you commit changes to your local Git repository, and you're ready to share them in Visual Studio Online, check them in.
git commit -a 
 git tf checkin

If you've committed multiple changes locally, you'll still get just one changeset in Visual Studio Online. 2. Resolve a bug or close a task when you check in by providing the work item ID with the resolve flag.

git tf checkin --resolve=21972

The changeset and the work item are linked, and you'll be able to see which bugs are resolved and which tasks were completed in the build reports. 3. You can make sure you're working with your team's latest code by pulling from Visual Studio Online.

git tf pull

Use git tf help to learn about the Git-tf commands.

git tf helpgit tf help checkin

Q&A

Q: Should I use Git or TFVC for my team project?

A: That depends on a number of factors, like the size of your codebase and the size and distribution of your team.

Q: If my team project uses Git Version control, can I still share my Xcode projects in Visual Studio Online?

A: Yes, see Share your code in Git using Xcode