User:Kebap/git commands

From Mudlet
< User:Kebap
Revision as of 10:57, 7 January 2021 by Kebap (talk | contribs) (Created page with "; Usual workflow : git pull : git branch myNewFeature : git checkout myNewFeature : work on myNewFile : git status : git add myNewFile : git commit -m "My awesome comment" : g...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Usual workflow
git pull
git branch myNewFeature
git checkout myNewFeature
work on myNewFile
git status
git add myNewFile
git commit -m "My awesome comment"
git status
rinse and repeat
git push --set-upstream origin myNewFeature
Why does "git status" report "Your branch is ahead of 'origin/development' by X commits." and how to remedy?
You probably pulled origin/development back into your branch to introduce recent upgrades? Use "git pull --rebase" to flatten them.