Created
June 27, 2013 15:26
-
-
Save seanbuscay/5877413 to your computer and use it in GitHub Desktop.
Create an orphan branch in a repo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd repository | |
git checkout --orphan orphan_name | |
git rm -rf . | |
rm '.gitignore' | |
echo "#Title of Readme" > README.md | |
git add README.md | |
git commit -a -m "Initial Commit" | |
git push origin orphan_name |
Note that using
git switch --orphan <branch name>
automatically removes ALL files from the working tree.Note that whatever is ignored by .gitignore won't be removed.
Note that git switch --orphan <branch name>
automatically removes ALL tracked files from the working tree (as it should, since we don't want files from other branches — it's an orphan branch). It will not remove
- untracked files
- modified (not yet committed) tracked files (because it refuses to proceed in this scenario)
This is independent of .gitignore
. However, there are many other ways to exclude files (e.g. .git/info/exclude
, git update-index --skip-worktree
etc). If you use any of those, possibly together and along .gitignore
, you probably have bigger things to worry about.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that whatever is ignored by .gitignore won't be removed.