我想在这个 git 存储库中定义一个新的“根”分支。“根”分支是指完全独立于存储库1中所有其他分支的分支。
不幸的是,即使是在 repo 提交树的最基础的提交(我们称之为它A
)也包含很多文件(这是一个在已经相当成熟的项目上初始化的存储库)。
这意味着,即使我A
作为新分支<start-point>
的A
.
有什么方法可以在这个存储库中创建一个完全裸露的分支,并且<start-point>
尽可能接近A
?
1顺便说一句,这不等于创建一个新的仓库。由于很多原因,单独的回购会不太方便。
编辑:好的,这就是我所做的,基于vcsjones的回答:
# save rev of the current earliest commit
OLDBASE=$(git rev-list --max-parents=0 HEAD)
# create a new orphan branch and switch to it
git checkout --orphan newbranch
# make sure it's empty
git rm -rf .
# create a new empty commit in the new branch, and
# save its rev in NEWBASE
git commit --allow-empty -m 'base commit (empty)'
NEWBASE=$(git rev-list HEAD)
# specify $NEWBASE as the new parent for $OLDBASE, and
# run filter-branch on the original branch
echo "$OLDBASE $NEWBASE" > .git/info/grafts
git checkout master
git filter-branch
# NOTE: this assumes that the original repo had only one
# branch; if not, a git-filter-branch -f <branch> command
# need to be run for each additional branch.
rm .git/info/grafts
虽然这个过程有点复杂,但最终结果是一个空的基本提交,可以用作<start-point>
任何新的“干净的分支”;我需要做的就是
git checkout -b cleanslate $(git rev-list --max-parents=0 HEAD)
将来我将始终创建这样的新存储库:
git init
git commit --allow-empty -m 'base commit (empty)'
...因此第一次提交是空的,并且始终可用于启动新的独立分支。(我知道,这将是一个很少需要的设施,但很容易让它随时可用。)