Reputation: 53826
Within 'Pending Changes' RTC source control is listing my target folder as an outgoing change. My project is maven based. I have not made any changes to the target folder.
When I compare the target folder with the stream I am flowing to I there are no differences displayed :
Is there some other criteria that is causing the 'Pending Changes' view to list my target folder & how can I determine what change is being recognized by RTC ?
When I try and undo the changeset within the target folder I receive the error :
Upvotes: 2
Views: 1568
Reputation: 1325137
The little +
in the black arrow above the 'target
' directory means RTC detects said directory as a new element to be delivered.
That means you must have checked in that directory with the rest of your changes.
Generally, target
should be ignored (ie never considered to be checked-in in the first place).
In your case, you should:
undo
on the target directory within your changesetUndoing this change would produce an orphan with no parent folder
").ignore
"Reverse
" on the changeset itself: it would roll back all the changes currently checked-in).jazzignore
: the ignore option will add or create a .jazzignore
, in order to declare your directory in it. Of edit your .jazzignore
if you have already one, with a content like:
core.ignore.recursive= \
{target}
Note: with ClearCase, the issue is different, since ClearCase doesn't detected what is private from what is checked-out (and you don't check out with RTC).
You need to ask explicitly for all private files or all checked out files.
Upvotes: 2