How to create a full orphan copy of a current branch in git?

by herminia_bruen , in category: Third Party Scripts , 10 months ago

How to create a full orphan copy of a current branch in git?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by lindsey.homenick , 10 months ago

@herminia_bruen 

To create a full orphan copy of a current branch in git, you can follow these steps:

  1. Check out the branch that you want to create an orphan copy of:
1
git checkout <branch-name>


  1. Create a new orphan branch based on the current branch:
1
git checkout --orphan <new-branch-name>


  1. Remove all files from the working directory and the index:
1
git rm -rf .


  1. Add and commit any new files that you want to include in the orphan branch:
1
2
git add .
git commit -m "Initial commit on orphan branch"


  1. Push the orphan branch to the remote repository (if necessary):
1
git push origin <new-branch-name>


Now you have successfully created a full orphan copy of the current branch in git.

Related Threads:

How to create a new branch in Git?
How to create new local branch in git?
How to create a branch of the diff using git command line?
How to branch from deleted branch in git?
How to pull from master branch with git?
How to rebase git branch on master?