Git: The only git commands you really only need
1. Git Add All 📦
npx add .
bash
An lazy developer is an good developer! Just add all the changes to the staging area, and then you can commit it later.
2. Git commit 💬
Add a commit message to the changes. You can use the new ai commit message generator from github, or you can use the old way to add a commit message.
git commit -m "Your commit message here"
bash
3. Git Push 🫸
Push the changes to the remote repository.
git push
bash