Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "PTP/environment setup/git"

(Notes)
(Notes)
Line 15: Line 15:
 
#* In GIT, HEAD is the endpoint of a branch.  'master' is the 'branch' that is the latest most recent main work
 
#* In GIT, HEAD is the endpoint of a branch.  'master' is the 'branch' that is the latest most recent main work
 
#** So, there is a HEAD revision of each branch, which is the endpoint (last change).
 
#** So, there is a HEAD revision of each branch, which is the endpoint (last change).
 +
#** E.g. there is the HEAD of master and the HEAD of ptp_5_0

Revision as of 13:44, 4 November 2011

The transition is currently being planned in bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=349695

Documentation

  1. http://www.youtube.com/user/cdtdoug (CDT screencasts - last 7 videos are about GIT)
  2. http://wiki.eclipse.org/EGit/User_Guide
  3. http://wiki.eclipse.org/Git
  4. http://wiki.eclipse.org/Platform-releng/Git_Workflows
  5. http://veerasundar.com/blog/2011/06/git-tutorial-getting-started/ - nice beginning tutorial esp. describing local vs. remote repository and a nice diagram of Git Data Transport Commands


Notes

  1. In CVS, HEAD means the 'branch' that is the latest most recent main work
    • In GIT, HEAD is the endpoint of a branch. 'master' is the 'branch' that is the latest most recent main work
      • So, there is a HEAD revision of each branch, which is the endpoint (last change).
      • E.g. there is the HEAD of master and the HEAD of ptp_5_0

Back to the top