A noob here.
I have a personal Macbook and I want to use Git to track the changes etc. I want to just init a repo on my macbook and work there. Is this a good idea?
What if:
I have a main repo somewhere in my Macbook HD, like, /Users/user/projects/project1 and clone it to another area on my macbook where I actually perform development? But there is a lot of redundancy in this.
I am a little confused and want to know what are the usual steps folks take in a similar personal development environment.
Thanks a lot.
Yes, that is a good idea. That is exactly what I do.
Your repository will live in /Users/user/projects/project1/.git/
You then checkout the repository to the directory /Users/user/projects/project1 and work on it there. You don’t need to clone anything.