From 146ac50ddaa6d4ed43c343a884060cec0a02ab7d Mon Sep 17 00:00:00 2001 From: syui Date: Mon, 17 Mar 2025 04:05:36 +0000 Subject: [PATCH] =?UTF-8?q?git=20=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/git.md b/git.md index 2524a1a..3908391 100644 --- a/git.md +++ b/git.md @@ -7,4 +7,18 @@ $ git commit -m "first" $ git push -f ``` -最初のcommitは空にして、次からaddするのがいいかも。 \ No newline at end of file +最初のcommitは空にして、次からaddするのがいいかも。 + +# 容量を削減する + +```sh +$ cp -rf ../$repo ../${repo}.back +$ git rebase -i --root +# 最初以外のcommitを削除 +$ rm -rf ../${repo}.back/.git +$ cp -rf .git ../${repo}.back/ +$ cd ${repo}.back +$ git add . +$ git commit -m first +$ git push -f +``` \ No newline at end of file