1

My question is related to this one. Basically, I checked out a file in my local branch and, later, I performed a merge from the main branch, which already had a newer version of this file. I find it weird that file@@/main/branch/subbranch/LATEST still contains the older version of the file, from before performing the checkout. Shouldn't the merge operation also update this link?

For merging, I used this command:

cleartool findmerge /my_file_folder -nc -fver .../branch -merge
Community
  • 1
  • 1
Mihai Todor
  • 8,014
  • 9
  • 49
  • 86

1 Answers1

2

The cleartool findmerge will checkout and merge, but won't check in.

As long as you do not checkin, the extended path @@/main/branch/subbranch/LATEST won't reflect the result of that merge.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250