gpt4 book ai didi

git - "changeset stripped"是什么意思?

转载 作者:太空狗 更新时间:2023-10-29 13:50:25 30 4
gpt4 key购买 nike

在 Bitbucket 存储库的 Recent Activity 列下,有以下条目:

enter image description here

这是什么意思?

最佳答案

Changeset stripped from <repo-name>

是 Bitbucket 的用语

this commit used to be in the history of <repo-name>, but has since been deleted by a force push.

您可以在玩具库中重现这种情况。在 Bitbucket 上创建一个空存储库,克隆它,然后 cd到克隆的根目录并运行以下命令:

# create a first commit
$ touch README
$ git add README
$ git commit -m "add README"
$ git push -u origin master

# create a second commit
$ printf "hello world\n" > README
$ git commit -am "modify README"
$ git push

# "delete" the second commit
$ git reset --hard master^
$ git push --force

在远程仓库中,在 Recent history 下,第二次提交(现已删除)将被标记为 Changeset stripping from <repo-name> :

enter image description here

关于git - "changeset stripped"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25691728/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com