Randomishlying
Randomishlying

Reputation: 1181

Git Refreshing Index Error (Aptana Studio 3)

I have been having the problem below for the last couple of days. I am fairly new to git, so I am not sure what is causing this problem.

I do not know where to go from here.

Any help would be appreciated.

Refreshing Git Index Error

Upvotes: 0

Views: 249

Answers (2)

Adam
Adam

Reputation: 50

Have you initiliaze a Git repo in the directory?

Do so by typing "git init" in Git bash.

Upvotes: 0

gturri
gturri

Reputation: 14599

According to the error message, you're trying to perform an operation in a directory which isn't in a git repository.

Try running it from e.g. the root of your repo (the one with the .git directory)

Upvotes: 1

Related Questions