0

How can I see which branch contains a changeset in Kallithea (RhodeCode fork)?

We use git and the URL of the changeset looks like this:

https://source/repos/my-git-repo/changeset/da2c946d929b5adb2b12c23a50205009802bde54

AFAIK you can do this with the command line:

git branch -r --contains <commit>
jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
guettli
  • 25,042
  • 81
  • 346
  • 663

1 Answers1

1

You should be able to see the corresponding branch using the web interface, on the up right corner of the changeset page.

enter image description here

Guy Bouallet
  • 2,099
  • 11
  • 16