Reputation: 1181
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.
Upvotes: 0
Views: 249
Reputation: 50
Have you initiliaze a Git repo in the directory?
Do so by typing "git init" in Git bash.
Upvotes: 0
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