I\'m completely new to git. I\'m working in Mac Terminal.
Whenever I do a git status
in my home directory, all untracked files, files in the stage direc
I'm not sure if this is what happened in your case, but you can get the error message from git log
fatal: bad default revision 'HEAD'
if you just made your repo, and you haven't made any commits in it yet. If this is your case, then simply add your files, commit them, and do the log again:
$ git add "*"
$ git commit -m "Your commit message"
$ git log