I am relatively new to Git. I created a new local repository, in my Windows machine, by issuing git init
command (say, inside d:\testproj
folder). i then configured Eclipse (my java ide) to point to this directory and started working on it. i then executed "git add" and "git commit" commands from the testproj folder. All commands executed successfully.
My question is: Is testproj
the working tree or git local repository?
PS: Meanwhile, i was looking for answers in stackoverflow and found this: https://stackoverflow.com/a/5283457/291475. I then came to a conclusion that .git
directory is the local repository and testproj
is the working directory. Is that correct?
Thank you.