From 11faf42c7eecdab97fc92fc8d2a03ae7177e9c60 Mon Sep 17 00:00:00 2001 From: Eddie Cohen Date: Fri, 14 Apr 2023 16:11:55 -0400 Subject: [PATCH] move git operations --- autogpt/commands.py | 1 + {scripts => autogpt}/git_operations.py | 0 2 files changed, 1 insertion(+) rename {scripts => autogpt}/git_operations.py (100%) diff --git a/autogpt/commands.py b/autogpt/commands.py index e8f1c1d1..eeedcad3 100644 --- a/autogpt/commands.py +++ b/autogpt/commands.py @@ -10,6 +10,7 @@ from autogpt.file_operations import read_file, write_to_file, append_to_file, de from autogpt.execute_code import execute_python_file, execute_shell from autogpt.json_parser import fix_and_parse_json from autogpt.image_gen import generate_image +from autogpt.git_operations import clone_repository from duckduckgo_search import ddg from googleapiclient.discovery import build from googleapiclient.errors import HttpError diff --git a/scripts/git_operations.py b/autogpt/git_operations.py similarity index 100% rename from scripts/git_operations.py rename to autogpt/git_operations.py