[feat] .CodeLumiaignoreに.ipynbファイルを無視するルールを追加
Browse files### 詳細な説明
- `.CodeLumiaignore`ファイルに`.ipynb`(Jupyter Notebookファイル)の無視設定を追加しました。
- これにより、リポジトリのサイズ管理が改善されると期待されます。
- .CodeLumiaignore +2 -1
- .SourceSageignore +3 -1
- .gitignore +2 -1
- NotebookForgeBeta.md +0 -0
- modules/git_operations.py +4 -4
.CodeLumiaignore
CHANGED
@@ -168,4 +168,5 @@ SourceSageAssets
|
|
168 |
LICENSE
|
169 |
.github
|
170 |
*.png
|
171 |
-
*.jpg
|
|
|
|
168 |
LICENSE
|
169 |
.github
|
170 |
*.png
|
171 |
+
*.jpg
|
172 |
+
*.ipynb
|
.SourceSageignore
CHANGED
@@ -27,4 +27,6 @@ build
|
|
27 |
.gitattributes
|
28 |
.CodeLumiaignore
|
29 |
tmp
|
30 |
-
.CodeLumiaignore
|
|
|
|
|
|
27 |
.gitattributes
|
28 |
.CodeLumiaignore
|
29 |
tmp
|
30 |
+
.CodeLumiaignore
|
31 |
+
.ipynb
|
32 |
+
*.ipynb
|
.gitignore
CHANGED
@@ -159,4 +159,5 @@ cython_debug/
|
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
#.idea/
|
161 |
|
162 |
-
SourceSageAssets
|
|
|
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
#.idea/
|
161 |
|
162 |
+
SourceSageAssets
|
163 |
+
tmp
|
NotebookForgeBeta.md
DELETED
The diff for this file is too large to render.
See raw diff
|
|
modules/git_operations.py
CHANGED
@@ -4,14 +4,14 @@ import time
|
|
4 |
|
5 |
def clone_repository(repo_url, repo_name):
|
6 |
# tmpフォルダを削除
|
7 |
-
if os.path.exists("tmp"):
|
8 |
-
shutil.rmtree("tmp")
|
9 |
|
10 |
# tmpフォルダを作成
|
11 |
-
os.makedirs("tmp")
|
12 |
|
13 |
# リポジトリのクローン
|
14 |
-
repo_path = f"tmp/{repo_name}"
|
15 |
if os.path.exists(repo_path):
|
16 |
shutil.rmtree(repo_path)
|
17 |
os.system(f"git clone {repo_url} {repo_path}")
|
|
|
4 |
|
5 |
def clone_repository(repo_url, repo_name):
|
6 |
# tmpフォルダを削除
|
7 |
+
if os.path.exists("/tmp"):
|
8 |
+
shutil.rmtree("/tmp")
|
9 |
|
10 |
# tmpフォルダを作成
|
11 |
+
os.makedirs("/tmp")
|
12 |
|
13 |
# リポジトリのクローン
|
14 |
+
repo_path = f"/tmp/{repo_name}"
|
15 |
if os.path.exists(repo_path):
|
16 |
shutil.rmtree(repo_path)
|
17 |
os.system(f"git clone {repo_url} {repo_path}")
|