Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
390 views
in Technique[技术] by (71.8m points)

In which case could be useful git checkout --orphan?

I found out that there is a possibility to create an orphan branch git checkout --orphan and as far as I understood this command will create a branch that has no history, but I just trying to think in which case could it be useful? Why do I need to create such kinds of branches?

question from:https://stackoverflow.com/questions/65860336/in-which-case-could-be-useful-git-checkout-orphan

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

One example is that when I want to torch the history of a branch, I would create an orphan branch from its current state, and create the root commit for force-pushing.

It's easy to understand why. For example, I use GitHub Actions to deploy my static website onto GitHub Pages, and when there's too many history bloating the repository, I would "reset" the deployment branch and torch its history, since that branch contains solely of program-generated content (the built website).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...