785

How do you squash your entire repository down to the first commit?

I can rebase to the first commit, but that would leave me with 2 commits. Is there a way to reference the commit before the first one?

7

25 Answers 25

1000

As of git 1.6.2, you can use git rebase --root -i

For each commit except the first, change pick to squash in the editor that pops up.

12
  • 3
    Added in 1.7.12: github.com/git/git/blob/master/Documentation/RelNotes/…
    – serbaut
    Commented Mar 5, 2013 at 20:45
  • 91
    This answer is ok, but if you're interactively rebasing more than, say, 20 commits, the interactive rebase will probably be way too slow and unwieldy. You're probably going to have a hard time trying to squash hundreds or thousands of commits. I would go with a soft or mixed reset to the root commit, then recommit, in that case.
    – user456814
    Commented Jun 11, 2014 at 2:55
  • 47
    If you have many commits it's hard to change 'pick' to 'squash' manually. Use :%s/pick/squash/g in VIM command line to do this faster.
    – eilas
    Commented Aug 4, 2017 at 14:17
  • 6
    this works find, but I had to do a forced push. be careful! git push -f
    – philshem
    Commented Oct 25, 2019 at 6:42
  • 4
    @eilas No need for the g. You only want to replace the first instance of the word pick on each line. Even better is :%s/^pick/squash/.
    – user137369
    Commented Apr 13, 2023 at 19:05
576

One Liner (for Bash/Zsh)

You can create a squash-all commit right from HEAD, without rebase at all, just run:

git reset $(git commit-tree HEAD^{tree} -m "A new start")

Note: this requires a POSIX compatible shell like bash/zsh, or Git Bash on Windows.

Making an Alias in ~/.gitconfig

[alias]
  squash-all = "!f(){ git reset $(git commit-tree HEAD^{tree} \"$@\");};f"

Then just run: git squash-all -m "a brand new start"

Note: Either provide the commit message from standard input, or via the -m/-F options, just like the git commit command. See git-commit-tree manual.

Alternatively, you can create the alias with the following command:

git config --global alias.squash-all '!f(){ git reset $(git commit-tree HEAD^{tree} "$@");};f'

Explain

  1. create a single commit via git commit-tree

    What git commit-tree HEAD^{tree} -m "A new start" does is:

    Creates a new commit object based on the provided tree object and emits the new commit object id on stdout. The log message is read from the standard input, unless -m or -F options are given.

    The expression HEAD^{tree} represents the tree object corresponding to HEAD, namely the tip of your current branch. see Tree-Objects and Commit-Objects.

  2. reset the current branch to the new commit

    Then git reset simply reset the current branch to the newly created commit object.

    This way, nothing in the workspace is touched, nor there's need for rebase/squash, which makes it really fast. And the time needed is irrelevant to the repository size or history depth.


Variation: New Repo from a Project Template

This is useful to create the "initial commit" in a new project using another repository as the template/archetype/seed/skeleton. For example:

cd my-new-project
git init
git fetch --depth=1 -n https://github.com/toolbear/panda.git
git reset --hard $(git commit-tree FETCH_HEAD^{tree} -m "initial commit")

This avoids adding the template repo as a remote (origin or otherwise) and collapses the template repo's history into your initial commit.

13
  • 8
    The git revision syntax (HEAD^{tree}) syntax is explained here in case anyone else was wondering: jk.gs/gitrevisions.html Commented Jun 23, 2014 at 23:45
  • 2
    Does this reset both the local and remote repository, or just one of them?
    – aleclarson
    Commented Oct 28, 2014 at 7:41
  • 7
    @aleclarson, this only reset the current branch in the local repository, use git push -f for propagation.
    – ryenus
    Commented Oct 28, 2014 at 12:20
  • 2
    I found this answer while looking for a way to start a new project from a project template repository that didn't involve git clone. If you add --hard to git reset and switch HEAD with FETCH_HEAD in the git commit-tree you can create an initial commit after fetching the template repo. I've edited the answer with a section at the end demonstrating this.
    – user23987
    Commented Feb 7, 2015 at 19:57
  • 6
    You could get rid of that "Caveat" but just using ${1?Please enter a message} Commented Oct 13, 2017 at 20:57
304

If all you want to do is squash all of your commits down to the root commit, then while

git rebase --interactive --root

can work, it's impractical for a large number of commits (for example, hundreds of commits), because the rebase operation will probably run very slowly to generate the interactive rebase editor commit list, as well as run the rebase itself.

Here are two quicker and more efficient solutions when you're squashing a large number of commits:

Alternative solution #1: orphan branches

You can simply create a new orphan branch at the tip (i.e. the most recent commit) of your current branch. This orphan branch forms the initial root commit of an entirely new and separate commit history tree, which is effectively equivalent to squashing all of your commits:

git checkout --orphan new-master master
git commit -m "Enter commit message for your new initial commit"

# Overwrite the old master branch reference with the new one
git branch -M new-master master

Documentation:

Alternative solution #2: soft reset

Another efficient solution is to simply use a mixed or soft reset to the root commit <root>:

git branch beforeReset

git reset --soft <root>
git commit --amend

# Verify that the new amended root is no different
# from the previous branch state
git diff beforeReset

Documentation:

11
  • 57
    Alternative solution #1: orphan branches - rocks!
    – Thomas
    Commented May 9, 2016 at 15:51
  • 14
    Alternative solution #1 FTW. Just to add, if you want to push your changes to the remote, do git push origin master --force. Commented Sep 9, 2016 at 11:01
  • 3
    should not forget git push --force
    – NecipAllef
    Commented Mar 28, 2018 at 16:38
  • 2
    Don't do an orphan branch on code (i.e. don't do alternative solution #1 above) if you're about to push to an open Github pull request!!! Github will close your PR because the current head isn't a descendant of the stored head sha. Commented Mar 29, 2019 at 0:54
  • 1
    Alternative solution #1 also avoids the merge conflicts that can occur when squashing commits
    – FernAndr
    Commented May 13, 2020 at 15:54
171

Perhaps the easiest way is to just create a new repository with current state of the working copy. If you want to keep all the commit messages you could first do git log > original.log and then edit that for your initial commit message in the new repository:

rm -rf .git
git init
git add .
git commit

or

git log > original.log
# edit original.log as desired
rm -rf .git
git init
git add .
git commit -F original.log
15
  • 79
    but you are loosing branches with this method Commented Jan 24, 2012 at 20:40
  • 215
    Git has evolved since this answer was given. No, there is a simpler and better way: git rebase -i --root. See: stackoverflow.com/a/9254257/109618
    – David J.
    Commented Jul 12, 2013 at 5:24
  • 11
    This might work for some cases, but it is essentially not the answer to the question. With this recipe, you loose all your config and all other branches too.
    – iwein
    Commented Nov 16, 2013 at 19:58
  • 18
    This is a horrible solution that's needlessly destructive. Please don't use it. Commented Nov 24, 2015 at 15:05
  • 11
    also will break submodules. -1
    – Krum
    Commented Apr 27, 2016 at 12:31
97
echo "message" | git commit-tree HEAD^{tree}

This will create an orphaned commit with the tree of HEAD, and output its name (SHA-1) on stdout. Then just reset your branch there.

git reset SHA-1

To do the above in a single step:

git reset $(git commit-tree HEAD^{tree} -m "Initial commit.")
6
  • 41
    git reset $(git commit-tree HEAD^{tree} -m "commit message") would make it easier.
    – ryenus
    Commented Feb 4, 2013 at 7:19
  • 7
    ^ THIS! - should be an answer. Not entirely sure if it was the author's intention, but was mine (needed a pristine repo with a single commit, and that gets the job done).
    – chesterbr
    Commented Jan 23, 2014 at 14:04
  • @ryenus, your solution did exactly what I was looking for. If you add your comment as an answer, I'll accept it.
    – tldr
    Commented May 4, 2014 at 0:38
  • 2
    The reason I didn't suggest the subshell-variant myself, is that it won't work on cmd.exe in Windows.
    – kusma
    Commented May 5, 2014 at 16:36
  • 1
    In Windows prompts, you might have to quote the last parameter: echo "message" | git commit-tree "HEAD^{tree}"
    – Bernard
    Commented Feb 18, 2016 at 23:48
49

Here's how I ended up doing this, just in case it works for someone else:

Remember that there's always risk in doing things like this, and its never a bad idea to create a save branch before starting.

Start by logging

git log --oneline

Scroll to first commit, copy SHA

git reset --soft <#sha#>

Replace <#sha#> w/ the SHA copied from the log

git status

Make sure everything's green, otherwise run git add -A

git commit --amend

Amend all current changes to current first commit

Now force push this branch and it will overwrite what's there.

2
  • 1
    Note that this actually seems to leave the history around. You orphan it, but it's still there.
    – Brad
    Commented Jan 7, 2017 at 3:22
  • Very useful answer ... but you should be aware that after the amend command you will find yourself in vim editor with its special syntax. ESC, ENTER, :x is your friend. Commented Feb 22, 2019 at 21:22
48

I read something about using grafts but never investigated it much.

Anyway, you can squash those last 2 commits manually with something like this:

git reset HEAD~1
git add -A
git commit --amend
0
38

The easiest way is to use the 'plumbing' command update-ref to delete the current branch.

You can't use git branch -D as it has a safety valve to stop you deleting the current branch.

This puts you back into the 'initial commit' state where you can start with a fresh initial commit.

git update-ref -d refs/heads/master
git commit -m "New initial commit"
0
27

In one line of 6 words:

git checkout --orphan new_root_branch  &&  git commit
3
  • @AlexanderMills, you should read git help checkout about --orphan
    – kyb
    Commented May 10, 2019 at 10:33
  • can you link to the docs for that so everyone who reads this doesn't have to manually search for it? Commented May 10, 2019 at 17:47
  • 2
    easy. here it is git help checkout --orphan
    – kyb
    Commented May 10, 2019 at 18:30
18

To do this, you can reset you local git repository to the first commit hashtag, so all your changes after that commit will be unstaged, then you can commit with --amend option.

git reset your-first-commit-hashtag
git add .
git commit --amend

And then edit the first commit nam if needed and save file.

1
  • 4
    this should be accepted answer, because this keeps other branches
    – dark_ruby
    Commented Jun 25, 2020 at 9:40
17

create a backup

git branch backup

reset to specified commit

git reset --soft <#root>

then add all files to staging

git add .

commit without updating the message

git commit --amend --no-edit

push new branch with squashed commits to repo

git push -f
2
  • Will this preserve the previous commit messages?
    – not2qubit
    Commented Nov 29, 2018 at 21:14
  • 1
    @not2qubit no this will not preserve the previous commit messages, instead of commit #1, commit #2, commit #3, you'll get all of the changes in those commits packed into a single commit #1. Commit #1 will be the <root> commit you reset back to. git commit --amend --no-edit will commit all changes to the current commit which is <root> without needing to edit the commit message.
    – David
    Commented Nov 30, 2018 at 10:26
15

First, squash all your commits into a single commit using git rebase --interactive. Now you're left with two commits to squash. To do so, read any of

10

Let's say you have 3 commits in your branch and it is already pushed to remote branch.

Example:

git log -4

Will display results like:

<your_third_commit_sha>
<your_second_commit_sha>
<your_first_commit_sha>
<master_branch_commit_sha - your branch created from master>

You want to squash your last 3 commits to one commit and push to remote branch. Here are the steps.

git reset --soft <master_branch_commit_sha>

Now all commits changes are integrated but uncommitted. Verify by:

git status

Commit all changes with a message:

git commit -m 'specify details'

Forcefully push the single commit to remote branch:

git push -f
7

To squash using grafts

Add a file .git/info/grafts, put there the commit hash you want to become your root

git log will now start from that commit

To make it 'real' run git filter-branch

5

I usually do it like this:

  • Make sure everything is committed, and write down the latest commit id in case something goes wrong, or create a separate branch as the backup

  • Run git reset --soft `git rev-list --max-parents=0 --abbrev-commit HEAD` to reset your head to the first commit, but leave your index unchanged. All changes since the first commit will now appear ready to be committed.

  • Run git commit --amend -m "initial commit" to amend your commit to the first commit and change the commit message, or if you want to keep the existing commit message, you can run git commit --amend --no-edit

  • Run git push -f to force push your changes

0
5

For me it worked like this: I had 4 commits in total, and used interactive rebase:

git rebase -i HEAD~3

The very first commit remains and i took 3 latest commits.

In case you're stuck in editor which appears next, you see smth like:

pick fda59df commit 1
pick x536897 commit 2
pick c01a668 commit 3

You have to take first commit and squash others onto it. What you should have is:

pick fda59df commit 1
squash x536897 commit 2
squash c01a668 commit 3

For that use INSERT key to change 'insert' and 'edit' mode.

To save and exit the editor use :wq. If your cursor is between those commit lines or somewhere else push ESC and try again.

As a result i had two commits: the very first which remained and the second with message "This is a combination of 3 commits.".

Check for details here: https://makandracards.com/makandra/527-squash-several-git-commits-into-a-single-commit

5

Let's say, you have these commits from 06 to 10.

You want to combine the commits post 06 to a single commit Id.

commit 10
commit 09  
commit 08  
commit 07  
commit 06

You can do a git reset soft.

git reset --soft "06"

Then, run the below command to push these changes to remote branch.

git push origin HEAD --force

Now, all the commits you have made before should be available as your local changes and you can combine all these commits to a single commit.

Now, the new commit structure should like below:

commit <new_commit_containing_all_7_8_9_10>
commit 06
3

I tried different commands with HEAD^{tree} but got this error from zsh:

zsh: no matches found: HEAD^{tree}

It was how ohmyzsh handles expansion, see this issue for more details: https://github.com/ohmyzsh/ohmyzsh/issues/449

Easiest fix is to run this command:

unsetopt nomatch
1
  • Thanks for your comment, or escape the ^ like so \^ git reset $(git commit-tree HEAD\^{tree} -m "initial commit") Commented Jan 19 at 8:26
2

I usually squash the entire tree when I restore a template from a git repository, to get a cleaner history and to ensure legal compliance. My workflow looks like this:

git clone https://git.invalid/my-awesome-template.git my-awesome-foo
cd !$
git branch -M master my-awesome-template/master
git checkout --orphan master
git rm -rf /
git commit --allow-empty --allow-empty-message -m 'Initial commit'
git merge --squash --allow-unrelated-histories my-awesome-template/master
git commit
git branch -D my-awesome-template/master
# you can now `drop' that "Initial commit":
git rebase -i --root

This squashes your entire history into a single large commit message.

In this particular example:

  • master is the working branch
  • my-awesome-template/master is an intermediate branch
1
  • really useful, maybe there are two commands not necesary: rm and second commit
    – David Con
    Commented Feb 12 at 12:37
1

This answer improves on a couple above (please vote them up), assuming that in addition to creating the one commit (no-parents no-history), you also want to retain all of the commit-data of that commit:

  • Author (name and email)
  • Authored date
  • Commiter (name and email)
  • Committed date
  • Commmit log message

Of course the commit-SHA of the new/single commit will change, because it represents a new (non-)history, becoming a parentless/root-commit.

This can be done by reading git log and setting some variables for git commit-tree. Assuming that you want to create a single commit from master in a new branch one-commit, retaining the commit-data above:

git checkout -b one-commit master ## create new branch to reset
git reset --hard \
$(eval "$(git log master -n1 --format='\
COMMIT_MESSAGE="%B" \
GIT_AUTHOR_NAME="%an" \
GIT_AUTHOR_EMAIL="%ae" \
GIT_AUTHOR_DATE="%ad" \
GIT_COMMITTER_NAME="%cn" \
GIT_COMMITTER_EMAIL="%ce" \
GIT_COMMITTER_DATE="%cd"')" 'git commit-tree master^{tree} <<COMMITMESSAGE
$COMMIT_MESSAGE
COMMITMESSAGE
')
1

This worked best for me.

git rebase -X ours -i master

This will git will prefer your feature branch to master; avoiding the arduous merge edits. Your branch needs to be up to date with master.

ours
           This resolves any number of heads, but the resulting tree of the merge is always that of the current
           branch head, effectively ignoring all changes from all other branches. It is meant to be used to
           supersede old development history of side branches. Note that this is different from the -Xours
           option to the recursive merge strategy.
1

Since I had some trouble with the solutions proposed here, I want to share a really simple solution (to squash all commits on a feature branch into one):

git merge origin/master && git reset --soft origin/master

The preceding merge cmd ensures, that no recent changes from master will go on your head when committing! After that, just commit the changes and do git push -f

0
0

In order to squash all the commits into one by doing following commands.

All the answers are awesome but I would like to put another approach with simple commands

git clone --depth 1 <remote-url> .
git commit --amend -m <commit message you want>
git push --force
0

In my opinion the easiest way:

git checkout --orphan <your new branch>

A response containing this idea

A more technical though still generic way:

Generic way to squash commits

0

the solution that worked for me invovled merge --squash:

git switch --orphan flatten-branch
git merge --no-edit --squash master

this was the fastest and simplest. As a side effect, entire git log is gone for good.

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