diff --git a/README.md b/README.md index f84efc5..6f2d179 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,18 @@ General Usage # show changes since last commit git diff HEAD +Pushing/Pulling Changes +------------------------- + + # fetch changes from remote for current branch AND merge them in + git pull + + # only fetch changes, do not merge (probably wont be used, but useful to know that git pull = git fetch + git merge in one) + git fetch + + # push your changes to remote + git push + Branching -----------