PySvn icon indicating copy to clipboard operation
PySvn copied to clipboard

Feature Request: Have log_default() support the use of the -g flag (or --use-merge-history)

Open jforand-adacel opened this issue 7 years ago • 2 comments

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]

jforand-adacel avatar Apr 12 '18 22:04 jforand-adacel

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 .

dsoprea avatar Apr 12 '18 22:04 dsoprea

Yep, all done. #105

jforand avatar Apr 13 '18 22:04 jforand