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"

(Commit messages)
(Add a few notes regarding feature branch naming)
Line 55: Line 55:
 
<tt>git config branch.<branchname>.rebase true</tt>
 
<tt>git config branch.<branchname>.rebase true</tt>
  
* Branches created for bug fixes
 
** prefix the name with the bug # and a 'very' short description (ex. 307258-automake-tabs-to-spaces)
 
 
* Release branches
 
* Release branches
 
** stable-Major.Minor
 
** stable-Major.Minor
* Branches specific to a sub-project
+
 
** namespaced (ex. valgrind/remote, lttng/super-awesome-feature)
+
=== Topic Branches/Transient Branches ===
 +
 
 +
Sometimes it's desirable to share work of an experimental feature or a bug fix. Feel free to push your topic branches to the main repository. Consider adding the name of the original author of the branch to it's name so as to make it more apparent who should be contacted when there is a desire to collaborate. These branches may get deleted once the feature/bugfix is complete and merged with the main code line. In general, please follow the following simple naming rules for them:
 +
 
 +
* Feature branches specific to a sub-project.
 +
** namespaced (e.g. feature/valgrind/severin-charting, feature/lttng/super-awesome-feature)
 +
* Feature branches not specific to any sub-project
 +
** namespaced (e.g. feature/profiling-framework, feature/super-awesome-feature)
 +
* Branches created for bug fixes
 +
** namespaced and prefixed with the bug # and a 'very' short description (e.g. bugfix/307258-automake-tabs-to-spaces)
  
 
== Tags ==
 
== Tags ==

Revision as of 11:16, 14 December 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

First steps

Commit messages

From this guide which is no longer accessible as of 2011-08-19:

  • make the first line a concise summary of the changes introduced by the commit, <= 50 characters in length
  • if there are any technical details that cannot fit in the summary, put them in the body instead.
  • wrap lines in the body to <= 72 characters
  • write entries in the present tense (just like with ChangeLog entries): "Fix bug #111", not "Fixed bug #111"

Taken directly from http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html, the format of an ideal commit message:

Capitalized, short (50 chars or less) summary

More detailed explanatory text, if necessary.  Wrap it to about 72
characters or so.  In some contexts, the first line is treated as the
subject of an email and the rest of the text as the body.  The blank
line separating the summary from the body is critical (unless you omit
the body entirely); tools like rebase can get confused if you run the
two together.

Write your commit message in the present tense: "Fix bug" and not "Fixed
bug."  This convention matches up with commit messages generated by
commands like git merge and git revert.

Further paragraphs come after blank lines.

- Bullet points are okay, too

- Typically a hyphen or asterisk is used for the bullet, preceded by a
  single space, with blank lines in between, but conventions vary here

- Use a hanging indent

Branches

Please ensure that you fetch and rebase rather than merge. When new branches are created, please use the "rebase" pull strategy. This is documented in the EGit User Guide: EGit/User_Guide#Branch_Creation_Dialog and is performed on the commandline like so:

git config branch.<branchname>.rebase true

  • Release branches
    • stable-Major.Minor

Topic Branches/Transient Branches

Sometimes it's desirable to share work of an experimental feature or a bug fix. Feel free to push your topic branches to the main repository. Consider adding the name of the original author of the branch to it's name so as to make it more apparent who should be contacted when there is a desire to collaborate. These branches may get deleted once the feature/bugfix is complete and merged with the main code line. In general, please follow the following simple naming rules for them:

  • Feature branches specific to a sub-project.
    • namespaced (e.g. feature/valgrind/severin-charting, feature/lttng/super-awesome-feature)
  • Feature branches not specific to any sub-project
    • namespaced (e.g. feature/profiling-framework, feature/super-awesome-feature)
  • Branches created for bug fixes
    • namespaced and prefixed with the bug # and a 'very' short description (e.g. bugfix/307258-automake-tabs-to-spaces)

Tags

More reading

Copyright © Eclipse Foundation, Inc. All Rights Reserved.