Master these basics to level up your dev game! 💪✨
git init - Start a new repo.
git clone [url] - Copy a repo.
git add [file] - Stage changes.
git commit -m "[message]" - Save your changes.
git status - Check your work.
git pull - Sync with remote.
git push - Upload your work.
git branch - Manage branches.
git checkout [branch] - Switch branches.
git merge [branch] - Combine branches.
Get these down and become a Git pro! 💻✨