How Do I Use git-tfs Idiomatically?
The git idiom is to check out branches to the root directory of the repository. Checking out a branch will replace the contents of the directory with the contents of that branch.
The TFS idiom is to check out each branch in a different directory under the root directory of the repository (even the master or trunk branch). Checking out a branch will place it in a new directory next to the current one.
Using git-tfs, I can clone a TFS repository or branch into a git repository. I want to work on a TFS repository with multiple branches in a manner consistent with the git branching idiom. But I'm not sure what's technically possible or recommended :)
Clone The Whole TFS Repository
If I clone the whole repository out of TFS
> git tfs clone http://<tfsurl>:8080 $/main
That would give me a git master
containing all the TFS branches as directories.
[master]> dir
trunk
feature-logon
feature-search
release-0.0.1
Add a Remote Per TFS Branch
I don't know if I can (or how to) map a git remote to each TFS branch.
> git init .
[master]> git tfs clone http://<url> $/main/trunk .
Then
[master]> git checkout -b feature-logon
[feature-logon]> git tfs clone http://<url> $/main/feature-logon .
I know this is technically incorrect, but I don't know any better without playing (my only TFS repo is very large, experimenting is taking a long time)
It's now possible to get the TFS branches to be correct Git branches if cloning using git-tfs. This is now in the stable release! You first clone not the entire repository but the trunk :
Then you run
branch --init
, which creates a new branch in the Git repositoryin your case :
Or use the the
--all
flag on a fresh cloned repository to create ALL the branches present on the TFS server.You could also clone directly with all the branches using flag
--with-branches
:The documentation for this new command is here. Feel free to provide feedback to improve it...
Here's one way you can do this, and still maintain some relationships between master and the branches. You'd probably want to script it. Excuse me if I use bash statements rather than windows command line for some of my examples
First clone the whole repository out, as in your first example, with branches as directories.
This moves the trunk to the root. (hopefully there are no conflicts with your branch folders)
Commit your new master
creating a new branch
Copy the branch files over the root files
Don't need these here any longer
Commit the branch
back to master
Do it all again
etc. etc..
Finally at the end
It's not perfect, but you end up with all your branches cloned off master and diffed more or less appropriately. AFAIK git should be fine if you overwrite a file with another file but the contents don't change, which allows this to all work.
One downside is that you won't clear out any files in the branches that have been deleted from the trunk. This may or may not be an issue for you...
What about multiple remote tfs-repos, 1 per branch? i have the following structure:
what i did
then you can create a branch for each remote branch:
git checkout -b localbranch1 tfs/Branch1
and commit into the tfs branchgit tfs ct -i branch1
In order to be able to easily merge the two lines create a graft:
where the ids are the hash of the first branch commit (from the Releases repo) and a parent commit id (find manually)
PS: I get error: Specified git repository directory is not empty as well (don't know how it worked before), so I manually added the second url in .git/config and did git tfs fetch -i Branch1