Feature Request: Have log_default() support the use of the -g flag (or --use-merge-history)
Would change the function signature to something like
def log_default(self, timestamp_from_dt=None, timestamp_to_dt=None,
limit=None, rel_filepath=None, stop_on_copy=False,
revision_from=None, revision_to=None, changelist=False,
use_merge_history=False):
and then somewhere in the function, would need to add
if use_merge_history is True:
args += ['--use-merge-history]
Would you be willing to create your own PR for this?
On Thu, Apr 12, 2018, 18:45 jforand-adacel [email protected] wrote:
Would change the function signature to something like
def log_default(self, timestamp_from_dt=None, timestamp_to_dt=None, limit=None, rel_filepath=None, stop_on_copy=False, revision_from=None, revision_to=None, changelist=False, use_merge_history=False):
and then somewhere in the function, would need to add
if use_merge_history is True: args += ['--use-merge-history]
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dsoprea/PySvn/issues/104, or mute the thread https://github.com/notifications/unsubscribe-auth/AArramMUtN1c-xJMT8XuPXx7LA_rG5Kxks5tn9j5gaJpZM4TSmoT .
Yep, all done. #105