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 "Linux Tools Project/Git"

(Git for Linux Tools)
Line 4: Line 4:
 
= Git for Linux Tools =
 
= Git for Linux Tools =
 
In late February 2011, we moved from SVN to Git.  Our SVN repositories were joined into one Git repository (and one for eclipse-build).
 
In late February 2011, we moved from SVN to Git.  Our SVN repositories were joined into one Git repository (and one for eclipse-build).
 +
 +
== Repository ==
 +
[http://git.eclipse.org/c/linuxtools/org.eclipse.linuxtools.git/ http://git.eclipse.org/c/linuxtools/org.eclipse.linuxtools.git/]
 +
 +
[git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git] (anonymous)
 +
[http://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git http://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git] (anonymous
 +
[ssh://<committerId>@git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git ssh://<committerId>@git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git] (committers)
  
 
== First steps ==
 
== First steps ==

Revision as of 01:01, 28 February 2011

{{#eclipseproject:technology.linux-distros}}

Linux Tools
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Git for Linux Tools

In late February 2011, we moved from SVN to Git. Our SVN repositories were joined into one Git repository (and one for eclipse-build).

Repository

http://git.eclipse.org/c/linuxtools/org.eclipse.linuxtools.git/

git://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git (anonymous) http://git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git (anonymous <committerId>@git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git ssh://<committerId>@git.eclipse.org/gitroot/linuxtools/org.eclipse.linuxtools.git (committers)

First steps

Commit messages

  • See guidelines others have written such as this one

Branches

  • Branches created for bug fixes
    • prefix the name with the bug # and a 'very' short description (ex. 307258-automake-tabs-to-spaces)
  • Release branches
    • stable-Major.Minor
  • Branches specific to a sub-project
    • namespaced (ex. valgrind/remote, lttng/super-awesome-feature)

Tags

Back to the top