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"

(Documentation)
(Documentation)
Line 8: Line 8:
 
# http://wiki.eclipse.org/Platform-releng/Git_Workflows
 
# http://wiki.eclipse.org/Platform-releng/Git_Workflows
 
# http://veerasundar.com/blog/2011/06/git-tutorial-getting-started/ - nice beginning tutorial esp. describing local vs. remote repository and a nice [http://veerasundar.com/blog/wp-content/uploads/2011/06/git.png  diagram] of Git Data Transport Commands
 
# http://veerasundar.com/blog/2011/06/git-tutorial-getting-started/ - nice beginning tutorial esp. describing local vs. remote repository and a nice [http://veerasundar.com/blog/wp-content/uploads/2011/06/git.png  diagram] of Git Data Transport Commands
 +
 +
 +
== Notes ==
 +
 +
# 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

Revision as of 13:43, 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

Back to the top