File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5757from aider .tools .delete_lines import _execute_delete_lines
5858from aider .tools .extract_lines import _execute_extract_lines
5959from aider .tools .git import (
60+ _execute_git_branch ,
6061 _execute_git_diff ,
6162 _execute_git_log ,
63+ _execute_git_remote ,
6264 _execute_git_show ,
6365 _execute_git_status ,
64- _execute_git_branch ,
65- _execute_git_remote ,
66+ git_branch_schema ,
6667 git_diff_schema ,
6768 git_log_schema ,
69+ git_remote_schema ,
6870 git_show_schema ,
6971 git_status_schema ,
70- git_branch_schema ,
71- git_remote_schema ,
7272)
7373from aider .tools .grep import _execute_grep
7474from aider .tools .indent_lines import _execute_indent_lines
Original file line number Diff line number Diff line change 1111from .delete_lines import _execute_delete_lines , delete_lines_schema
1212from .extract_lines import _execute_extract_lines , extract_lines_schema
1313from .git import (
14+ _execute_git_branch ,
1415 _execute_git_diff ,
1516 _execute_git_log ,
17+ _execute_git_remote ,
1618 _execute_git_show ,
1719 _execute_git_status ,
18- _execute_git_branch ,
19- _execute_git_remote ,
20+ git_branch_schema ,
2021 git_diff_schema ,
2122 git_log_schema ,
23+ git_remote_schema ,
2224 git_show_schema ,
2325 git_status_schema ,
24- git_branch_schema ,
25- git_remote_schema ,
2626)
2727from .grep import _execute_grep , grep_schema
2828from .indent_lines import _execute_indent_lines , indent_lines_schema
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ def _execute_git_remote(coder):
201201 remotes = coder .repo .repo .remotes
202202 if not remotes :
203203 return "No remotes configured."
204-
204+
205205 result = []
206206 for remote in remotes :
207207 result .append (f"{ remote .name } \t { remote .url } " )
You can’t perform that action at this time.
0 commit comments