"Too many revisions" git message "Too many revisions" git message powershell powershell

"Too many revisions" git message


This does not answer the OP's specific situation but I don't have enough reputation to add this as a comment... This page is one of the top search results for the error message Too many revisions specified

If you are using Posh Git or some other powershell command line then you get the above error message when you enter a command like

git stash show -p stash@{2}

Powershell doesn't like the curly braces.

git stash show -p stash@'{'2'}'

should do the trick.

Similarly:

git stash show -p "stash@{2}" 

also avoids the error.