I'm working in a code base that already has a lot of "TODO" comments, and before I push my changeset(s) I want to make sure I haven't left any of my TODO comments in there (rather than actually doing it, or adding it to the new-feature database and removing the comment).

At the moment I'm just using "TODO: Wilka" in each of the comments, so it's easy to search for. But is there a way with Mercurial I can search for "TODO" only in the files that have changed in a collection of changesets? Ideally, it would only search the lines that have actually changed - but even just the files would be good.

link|improve this question

feedback

3 Answers

to search a specific set of revisions you could do:

hg grep -r 0:3 "\bTODO:"
link|improve this answer
IMHO, this will show ALL the TODO's in the project, not only the ones he introduced? – bbaja42 Jul 6 '11 at 14:55
That is a fair point - this will list all instances of "TODO:" in the given revisions. Removing the '--all' will only return the first hit for each file match – Leom Burke Jul 6 '11 at 15:08
also I dont think the question asks for ones that he introduces ("I can search for "TODO" only in the files that have changed in a collection of changesets?") – Leom Burke Jul 6 '11 at 15:14
It also gives output detailing which revision the particular line was changed in. I stand by my answer :) but edited my answer to remove the '--all' as I dont think its needed. – Leom Burke Jul 6 '11 at 15:20
feedback

The automated way is via Mercurial commit hooks. The examples may be helpful as might the checkfiles extension referred to by Selenic.

In my experience, commit hooks are a mixed bag and often do what you want but are irksome when you really want to commit a TODO. The Shelve extension attempts to work around this, but the cure can be worse than the problem.

I haven't explored the possibility of something like hg com --but-ignore-my-TODO-hook which could be nifty.

link|improve this answer
Don't you mean pre push hook? – bbaja42 Jul 6 '11 at 14:47
feedback

Diff between wanted revisions piped to the grep, only modified files file be searched with the grep

hg diff -r 100:105 | grep TODO

EDIT: As mentioned in the comments, this is presumes that grep is installed (so non Windows enviroment)
@thanks Tim, if using Windoes, use findstr instead of the grep

link|improve this answer
1  
This assumes grep is available - which is not case on (e.g) a standard windows box. – Leom Burke Jul 6 '11 at 14:33
2  
On Windows you can replace grep with findstr. In this simple case, it will work the same. – Tim Henigan Jul 6 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.