I want to track my existing project for versioning needs only using local repository.
Do I have to push it to my local repository or is committing enough? Tutorials such as this describe tracking by only typing git init
, git add
and git commit
. Also, how can I pull my previous version later when I need to?
Regarding I have already changed the current working directory to my local project by opening bash prompt inside the directory that my project is in, what steps should I follow?
I have used Github before and I know how to push the changes to a remote repo. But when it comes to local, I get confused.