6

In jenkins pipeline, execute git command :

git log --format=%B --no-merges origin/master..origin/${currentBranch}

jenkins output error :

fatal: ambiguous argument 'origin/master..origin/XOPS-42_AddResultToJIRA': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'

but in my local computer i execute above git command, it work well, how to resolve above error in jenkins

Tensibai
  • 11,366
  • 2
  • 35
  • 62
Skila Zheng
  • 61
  • 1
  • 3

1 Answers1

1

From the git documentation around the command git rev-list:

git rev-list A...B

Try your command syntax like the above (i.e. origin/master...origin/${currentBranch})

papanito
  • 273
  • 2
  • 14
Imran H.
  • 11
  • 2