Hello, Is it possible to exclude specific text from filtered commits. For ex, I want to look at all my SVN changes in fisheye, but those WITHOUT the text "automated build". i.e. this would allow me NOT to see some commits that are not done by real people.
Thanks.
Hi FrankV,
You can use EyeQL to find this. Just to explain on example, go to https://fisheye2.atlassian.com/search/mb-unit/page and run the search with this query
select revisions where comment matches 'tweaks' group by csid return count(revisions), csid, author, date, comment
Notice you get 46 results, all the commits from mb-unit repository with 'tweaks' phrase. Now repeat the search with this query:
select revisions where comment matches 'tweaks' and not comment matches 'minor' group by csid return count(revisions), csid, author, date, comment
to see only 20 changesets returned - all the changesets with phrase 'minor' in the commit message were excluded.
Hope that helps,
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.