git cheat-sheet
Git Cheat-Sheet
Repository creation:
From existing directory:
cd project_dir
git init
git add <dir><file1><file2> or git add . to stage all the files
From other repository :
git clone <git-hub repository url>
Commit and Status:
git commit -m "My me...
gdr.hashnode.dev1 min read