Creating And Managing Git Repository Git Series Part 2
Once I have created the files I want to begin with, I will now run ‘git init’ to turn the current working directory into a git repository. $ git init Next thing we need to do is register these files using ‘git add‘ so that git can start keeping tracks of their changes. $ git add The files are ready to be committed using ‘git commit‘. Running this will bring up a text editor (be it nano, emacs, vim, or whatever is set in the configuration)....