Git/push

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Revision as of 02:17, 12 December 2014 by Woozle (talk | contribs) (examples)
Jump to navigation Jump to search

Action: updates remote refs using local refs, while sending objects necessary to complete the given refs

Examples

  • git push <remote server> <branch to push>
  • git push -u -v <remote server> <branch to push>
    • This version is more verbose; not actually sure what -u does.

Remote server is any server-alias you have set up; "origin" seems to be a default. Branch is typically "master".

Links

Reference