mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 22:34:59 +00:00
Added --no-git
This commit is contained in:
parent
5c432592cd
commit
b5b0c1cbc2
2 changed files with 11 additions and 1 deletions
|
@ -90,6 +90,7 @@ class Coder:
|
||||||
verbose=False,
|
verbose=False,
|
||||||
assistant_output_color="blue",
|
assistant_output_color="blue",
|
||||||
stream=True,
|
stream=True,
|
||||||
|
use_git=True,
|
||||||
):
|
):
|
||||||
self.verbose = verbose
|
self.verbose = verbose
|
||||||
self.abs_fnames = set()
|
self.abs_fnames = set()
|
||||||
|
@ -123,6 +124,7 @@ class Coder:
|
||||||
|
|
||||||
self.commands = Commands(self.io, self)
|
self.commands = Commands(self.io, self)
|
||||||
|
|
||||||
|
if use_git:
|
||||||
self.set_repo(fnames)
|
self.set_repo(fnames)
|
||||||
|
|
||||||
if self.repo:
|
if self.repo:
|
||||||
|
|
|
@ -118,6 +118,13 @@ def main(args=None, input=None, output=None):
|
||||||
default=True,
|
default=True,
|
||||||
help="Disable streaming responses",
|
help="Disable streaming responses",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--no-git",
|
||||||
|
action="store_false",
|
||||||
|
dest="git",
|
||||||
|
default=True,
|
||||||
|
help="Do not look for a git repo",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--user-input-color",
|
"--user-input-color",
|
||||||
default="green",
|
default="green",
|
||||||
|
@ -265,6 +272,7 @@ def main(args=None, input=None, output=None):
|
||||||
verbose=args.verbose,
|
verbose=args.verbose,
|
||||||
assistant_output_color=args.assistant_output_color,
|
assistant_output_color=args.assistant_output_color,
|
||||||
stream=args.stream,
|
stream=args.stream,
|
||||||
|
use_git=args.git,
|
||||||
)
|
)
|
||||||
|
|
||||||
if args.dirty_commits:
|
if args.dirty_commits:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue