Git Starting Commands
Git Starting Commands Lecture Command Listing - Fresh Start pwd cd projects/ git init git-demo Lecture Command Listing - Start with Existing Project pwd cd projects/ cd website/ ls git init Command Reference Present Workding Directory pwd Change Directory cd folder-name Git initialization git init [ project-name ] project-name parameter is optional. If not supplied, Git will initialize the current directory.