Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have a local Git repository, which I push to a Github repository.

The local repository has ~10 commits, and the Github repository is a synchronised duplicate of this.

What I'd like to do is remove ALL the version history from the local Git repository, so the current contents of the repository appear as the only commit (and therefore older versions of files within the repository are not stored).

I'd then like to push these changes to Github.

I have investigated Git rebase, but this appears to be more suited to removing specific versions. Another potential solution is to delete the local repo, and create a new one - though this would probably create a lot of work!

Many thanks

ETA: There are specific directories / files that are untracked - if possible I would like to maintain the untracking of these files.

share|improve this question
1  
See also stackoverflow.com/questions/435646/… ("How do I combine the first two commits of a Git repository?") – Anonymoose Mar 13 '12 at 11:56

5 Answers

up vote 19 down vote accepted

Step 1: remove all history.

rm -rf .git

Step 2: reconstruct the Git repo with only the current content.

git init
git add .
git commit -m "Initial commit"

Step 3: push it to GitHub.

git remote add origin <github-uri>
git push -u --force origin master
share|improve this answer
Thanks larsmans - I have opted to use this as my solution. Though initialising the Git repo loses record of untracked files in the old repo, this is probably a simpler solution for my problem. – kaese Mar 13 '12 at 12:14
@kaese: I think your .gitignore should handle those, right? – larsmans Mar 13 '12 at 12:44
Apologies - I'm quite new to Git (hence the simplicity of the original question) - but I believe you are correct – kaese Mar 13 '12 at 13:09

This is my favoured approach:

git branch new_branch_name $(echo "commit message" | git commit-tree HEAD^{tree})

This will create a new branch with one commit that adds everything in HEAD. It doesn't alter anything else, so it's completely safe.

share|improve this answer
git log -n1 --format=%H >.git/info/grafts
git filter-branch -f
rm .git/info/grafts

( if you then want to clean it up, try this dangerous script: http://sam.nipl.net/b/git-gc-all-ferocious )

share|improve this answer

The only solution that works for me (and keeps submodules working) is git checkout --orphan [branch-name] and then committing the files there.

Deleting .git/ always causes huge issues when I have submodules. Using git rebase --root would somehow cause conflicts for me (and take long since I had a lot of history).

share|improve this answer

The other option, which could turn out to be a lot of work if you have a lot of commits, is an interactive rebase:git rebase -i <first_commit>

You would then proceed to squash every single commit when presented with the list of commits.

At the end you would have a new commit that is a combination of all the previous ones.

The advantage is that you don't have to delete your repository.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.