Creating repository
git init
: create a repositorygit add File_Name
: add “File_Name” to repositorygit add .
: add all filesgit commit -m "message"
: commit changes and tell others what changes have been madegit commit -m "Title" -m "Description .."
: commit with a short title then long description