Ogen
Ogen

Reputation: 6709

Git commit is taking a long time

I used the following commands in this order:

git pull origin master

git add .

git commit -m 'my third commit'

And then my Git Shell just shows these characters: >> _ with the underscore flashing. It's been like this for 10 minutes, whats going on?

Upvotes: 3

Views: 21138

Answers (1)

Lawrence Craft
Lawrence Craft

Reputation: 324

From your other comment, it looks like you're using Powershell.

The >> means that there's an unmatched quotation, parentheses, or other character requiring a match. Git has not yet been executed.

Press Control-C. Look at your commit message. Does it include " or ' or some other special character? If so, take it out or properly escape it.

Upvotes: 6

Related Questions