git init # Initialize a new repo git clone [url] # Clone an existing repo git status # Check status of files git add . # Stage all changes git commit -m "msg" # Commit changes