Pull latest changes
Keep your branch current before coding. Pull first to reduce integration surprises and catch upstream changes early.
Master pull, commit, push, branch operations, and merge conflict resolution in StarGit. This tutorial is the practical daily workflow guide after installation.
These three operations define your core loop in StarGit.
Keep your branch current before coding. Pull first to reduce integration surprises and catch upstream changes early.
Stage intentional changes and commit with meaningful messages. StarGit helps you review status and keep commits focused.
Publish your branch so teammates and automation can consume your updates. Prefer clean branch history and clear intent.
Branch workflows let teams ship safely in parallel.
Create feature-specific branches to isolate work from your stable baseline.
git branch <branch-name>git switch <branch-name>feature/login-page
Move between contexts without losing work. Ensure your current changes are either committed or stashed first.
git switch <branch-name>
Sync regularly with your remote branch to keep collaboration smooth and reduce large merge bursts.
git pull origin <branch-name>git push origin <branch-name>git push -u origin <branch-name>Conflicts are normal. Resolve quickly with a repeatable flow.