-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple branches under one git repo #55
Comments
Hi @inglor, I'm afraid you have. Unfortunately, due to the way This is how I remember the problem, although I vaguely wish I had an instance of Clearcase to confirm. (Although on the other hand I'm also happy if I never have to touch it again). In any case, it's just a convenience feature when you want to maintain the mapping between a branch and view in a single repo, but it's not anything more than that. I'm sorry it doesn't the much more useful feature of fetching history across multiple branches, which would be extremely handy. The way I was using it, way back when, was to pull in the history of the master/main branch, and then create a new view/branch from that point, and having two branches in git and two views. Obviously at that point that branches in Git diverge - there's no merging/syncing between them. It sucks. :( If you can figure out a way to get |
If you know if/when the dev branch is merged with master than you can manually create the Not sure if that helps. |
This is what I've been doing for the past weeks. [develop]
clearcase = m:\my_project_view_sprint_86_int\vob_ccproject
branches = main*|ccproject_sprint_86*
[master]
clearcase = m:\my_project_view_version_00.85.XX_int\vob_ccproject
branches = ccproject_00.85.XX* (pay attention to the branches part, you can check the lshistory file to see what you should put into each one) and at the git commits I wanted to start following clearcase, I created the additional branches I can now use A pity about not recognizing deliveries between clearcase streams, but I can live with it. NOTE: sometimes I run NOTE 2: bear in mind that adding manually the |
Hello Charles,
I'm trying to track 2 different branches of the same project in Clearcase under git-cc. I followed the documentation and I came up with this .git/gitcc file
I initiated a
gitcc rebase
and loaded allt he history from prod branch to master. But there's no dev branch created to the git repository.Did I understand the feature wrongly ?
The text was updated successfully, but these errors were encountered: