SkillSeevaSkillSeeva
HomeResourcesScheduleRoadmapTeam
Back to Categories
Current Path
Git
Basic CommandsBranching & MergingWorking with Remotes
Jump to topic:
Basic CommandsBranching & MergingWorking with Remotes

Basic Commands

The fundamental commands you'll use every day.
bash
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
1 / 3