Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Best way to restart repo?

Dave March 1, 2016

We have a repo we've been playing with but want to reset it; is it better to clear the history somehow or just delete the branch and recreate it? I'm afraid that recreating it will be buggy in BitBucket.

1 answer

1 vote
Tim Crall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 3, 2016

You can use 

git reset --hard <commit_id>

to reset the branch pointer to the specified commit and also reset the working directory.  If the old commits had been pushed to your remote, you will have to do a force push to push the reset versions.

git push -f

It is possible that your remote may be configured to reject force pushes.

You will lose all the code changes in commits that you've reset, so be sure.  If you wanted to retain your ability to access them just in case, you could create a separate branch to point to them before reseting.  

Deleting a branch and recreating it is also valid - a branch is just a pointer to a commit, so this will have exactly the same effect with all the same possible concerns.

Dave March 8, 2016

The initial commit was from another repo that I had imported, and I needed to just reset the repo without the old history without recreating it in BitBucket, so I init'd a new repo in another folder, copied .git to the folder, deleted all the files but the .gitignore, made an initial commit (before setting the remote), then added the remote and force-pushed, and it worked, though it some minutes for BitBucket to completely recognize it.

Tim Crall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 8, 2016

sorry, I think I misunderstood your question.  Yeah, if you want to keep the contents of the repo as it currently is but wipe away its history (for whatever reason), that procedure sounds about right.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events