Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.
Merged

sync #16

Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/gitx/widgets/branches_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def refresh_branches(self) -> None:
node.label.stylize("green bold")
node.label = Text("✓ ") + node.label


# Get remote branches
remote_branches = []
for branch_info in branches:
Expand All @@ -71,6 +70,5 @@ def on_tree_node_selected(self, event: Tree.NodeSelected) -> None:

if hasattr(node, 'data') and node.data and "branch" in node.data:
branch = node.data["branch"]

# Show dialog to confirm checkout or perform related branch action
self.app.notify(f"Selected branch: {branch} (checkout not implemented yet)")