2-git common operation and configuration egit

Interactive project:
  the first release of the project :( local -> remote)
    <1> // git the Add items will be sent to the local staging area (on behalf of all the files currently in the project root directory)..

    <2> git the commit -m "annotation content" // item sent to a local warehouse from scratch / branch (default master branch)

    <. 3> Git push @ -u origin master to master branch pushed master branch origin host. If the latter does not exist, it is new.
  The first download the project :( remote -> local)
    git clone + project unique http / ssh identifier

  Update (Remote -> Local):
    git pull

  Submit (local -> remote):
    (current working directory, right-bash git)
    . <1> git the Add

    <2> git the commit -m "footnotes"

    <3> git the Push Origin (remote host name) master (remote branch name) // push the local master branch to master branch origin host. If the latter does not exist, is new


Egit: Git operate in eclipse (eclipse the current basic support Git, if not support, went to help -> Eclipse MarketPlace search for Git installed)

Guess you like

Origin www.cnblogs.com/kesheng/p/12578557.html