Skip to content

Latest commit

 

History

History
59 lines (46 loc) · 709 Bytes

File metadata and controls

59 lines (46 loc) · 709 Bytes

Some common git command

Create new repository
git init 
Clone repository
git clone remote_link_address
Add changed file/s

Single file

git add file_name.extention

Folder

git add /folder_name

All changed files

git add .
Commit to git
git commit -m "write your commit message" 
Upload to remote
git push
Update/fetch from remote
git pull