You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We run "cleartool lshistroy" and then filter "checkinversion operaton" to get all the versions created. )
Typically, the output might be
checkinversion|20140307.1111111|user|dummy|\main\5| (it is a version on Main)
checkinversion|20140307.1111111||dummy|\main\my_branh\5| (it is a version on my_branch)
And then we
cc_exec(['get','-to', toFile, cc_file(file, version)])
And then create git version on master for each of them.
This will create some addtional version on the git master, which are original on the my_branch of CC
is it reasonable?
The text was updated successfully, but these errors were encountered:
I'm not sure what the question is? That all sounds like what git-cc does, although you lose me at the end when you're talking about "additional version on the git master".
As you've probably noticed git-cc doesn't do anything clever about Clearcase (or Git) branches. It's assuming that you will want to sync a single view/branch. Anything else in Clearcase is just too hard because of the way it tracks branching on a per-file basis. So whatever branch you're on in Git is the branch that will updated from Clearcase changes which are controlled by the branches configuration (or main by default).
Does that help or make sense? I wish git-cc could have been smarter. :(
Charles
When we transfer between CC main and git master.
We run "cleartool lshistroy" and then filter "checkinversion operaton" to get all the versions created. )
Typically, the output might be
checkinversion|20140307.1111111|user|dummy|\main\5| (it is a version on Main)
checkinversion|20140307.1111111||dummy|\main\my_branh\5| (it is a version on my_branch)
And then we
cc_exec(['get','-to', toFile, cc_file(file, version)])
And then create git version on master for each of them.
This will create some addtional version on the git master, which are original on the my_branch of CC
is it reasonable?
The text was updated successfully, but these errors were encountered: