File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Original file line number Diff line number Diff line change @@ -2732,7 +2732,7 @@ def set_url(
2732
2732
2733
2733
2734
2734
class GitRemoteManager :
2735
- """Run commands directly related to git remotees of a git repo."""
2735
+ """Run commands directly related to git remotes of a git repo."""
2736
2736
2737
2737
remote_name : str
2738
2738
@@ -2785,7 +2785,7 @@ def run(
2785
2785
check_returncode : bool | None = None ,
2786
2786
** kwargs : Any ,
2787
2787
) -> str :
2788
- """Run a command against a git repository's remotees .
2788
+ """Run a command against a git repository's remotes .
2789
2789
2790
2790
Wraps `git remote <https://git-scm.com/docs/git-remote>`_.
2791
2791
@@ -2881,7 +2881,7 @@ def show(
2881
2881
)
2882
2882
2883
2883
def _ls (self ) -> list [str ]:
2884
- """List remotees .
2884
+ """List remotes .
2885
2885
2886
2886
Examples
2887
2887
--------
@@ -2893,7 +2893,7 @@ def _ls(self) -> list[str]:
2893
2893
).splitlines ()
2894
2894
2895
2895
def ls (self ) -> QueryList [GitRemoteCmd ]:
2896
- """List remotees .
2896
+ """List remotes .
2897
2897
2898
2898
Examples
2899
2899
--------
@@ -2932,7 +2932,7 @@ def get(self, *args: t.Any, **kwargs: t.Any) -> GitRemoteCmd | None:
2932
2932
return self .ls ().get (* args , ** kwargs )
2933
2933
2934
2934
def filter (self , * args : t .Any , ** kwargs : t .Any ) -> list [GitRemoteCmd ]:
2935
- """Get remotees via filter lookup.
2935
+ """Get remotes via filter lookup.
2936
2936
2937
2937
Examples
2938
2938
--------
You can’t perform that action at this time.
0 commit comments