1
0

pkgs/git-show-link: Handle branch names with slashes properly

This commit is contained in:
2025-05-19 10:49:07 +02:00
parent d0c6ecff4c
commit 44d1a444ba

View File

@@ -41,7 +41,7 @@ def get_remote_branch():
local_branch, remote_branch = branches
remote, branch = remote_branch.split("/")
remote, branch = remote_branch.split("/", maxsplit=1)
return {
"remote": remote,