To get a list of changes, this answer gives the command line:
hg status --change REV
But calling status
using hglib
gives an error:
>>> client.status(rev=-1, change=True)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\asdf\envs\stackoverflow\lib\site-packages\hglib\client.py", line 1384, in status
raise ValueError('cannot specify both rev and change')
ValueError: cannot specify both rev and change
Why can't we specify both rev
and change
?
In answer to another recent question, I posted:
client.status(rev=[start, end], modified=True, added=True)
This works, but I was wondering why the other doesn't. What am I missing?