git を更新

syui 2025-03-17 04:05:36 +00:00
parent c55f996c85
commit 146ac50dda

16
git.md

@ -7,4 +7,18 @@ $ git commit -m "first"
$ git push -f $ git push -f
``` ```
最初のcommitは空にして、次からaddするのがいいかも。 最初の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
```