⚡Git Cheat-sheet git init # Create a new Git repository. git status # View the status of files in the working directory. git add filename.txt # Add files to the staging area. git commit -m "added new files" # Commit all changes git commit -m "done"...