So currently I am trying to learn Git and am having a little trouble although many tutorials seem to be thorough and consistent.
When I type git init
I get /Users/{username}/.git/
which seems to be ok since the tutorials also return the same path.
But when I type git status
I get every file and folder (both hidden and non hidden) that is in my /Users/{username}/
directory for some reason, and it says all of those files/folders are untracked.
I don't want those files/folders in there as I only want my .git
folder to contain my projects so I can proceed learning how to push projects into my remote repository (GitHub).
My system is Mac OSX, with OSX Sierra installed.