We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 953e10a commit 1a8577dCopy full SHA for 1a8577d
tools/src/main/python/opengrok_tools/scm/mercurial.py
@@ -18,7 +18,7 @@
18
#
19
20
21
-# Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
22
# Portions Copyright (c) 2020, Krystof Tulinger <k.tulinger@seznam.cz>
23
24
@@ -82,6 +82,8 @@ def reposync(self):
82
# some servers do not support it.
83
if branch == "default":
84
hg_command.append("--check")
85
+ hg_command.append("-r")
86
+ hg_command.append("tip")
87
cmd = self.get_command(hg_command, work_dir=self.path,
88
env_vars=self.env, logger=self.logger)
89
cmd.execute()
0 commit comments