如何在git中压缩.git目录

时间:2016-03-04 02:35:48

标签: git github initialization

以下是我继承的Rails应用程序内的目录大小:

→ find . -maxdepth 1 -type d -mindepth 1 -exec du -hs {} \;
263M    ./.git
2.0M    ./app
124K    ./config
728K    ./db
4.0K    ./doc
 56K    ./lib
  0B    ./log
232K    ./public
8.0K    ./script
164K    ./spec
560K    ./spreadsheets
 16K    ./test
 64K    ./vendor

我在Github上的现有存储库分支上创建了一个新的存储库,并保留旧存储库。 我不需要新存储库中的任何历史记录,因为旧存储库的特定分支成为新存储库的主服务器,并且是新存储库中的唯一分支。我希望将.git的大小设置为最小尺寸,因为它在Github空间,本地空间和Heroku部署方面绝对浪费。

Git init没有用。我不知道我是否可以

rm -rf .git

然后重新初始化git存储库,然后将其推送到Github远程。

2 个答案:

答案 0 :(得分:2)

为了压缩.git目录,只保留某些分支删除旧提交。

请执行以下步骤:

  1. Delete the branches you don't need
  2. Amend commits before the one you need
  3. Perform garbage collection

答案 1 :(得分:0)

执行以下命令:

# remove old content
rm -rf .git

# init new repo
git init

# add all current files (add .gitignore entries if you need to ignore some files)
git add -A .

# commit the current content
git commit - m ".. Message..."

# add the remote url of the github server
git remote add origin <github new url>

# oush your code to github
git push origin master