Git Command Generator
Generate common Git commands with explanations
git statusCheck the status of your working directory
git log --onelineView commit history in compact format
git diffShow changes in working directory
git checkout -b feature-branchCreate and switch to a new branch
git add .Stage all changes for commit
git commit -m "Your commit message"Commit staged changes
git push origin mainPush commits to remote repository
git pull origin mainPull latest changes from remote
git branch -d branch-nameDelete a local branch
git merge branch-nameMerge a branch into current branch
git stashTemporarily save changes
git stash popRestore stashed changes