Difference between revisions of "Template:Gitcommit"

From MythTV Official Wiki
Jump to: navigation, search
(Add optional third param - user specified link display)
m
Line 38: Line 38:
 
*** Example:  
 
*** Example:  
 
**** <nowiki>{{gitcommit|7f3dcdab|mythtv|[v0.17-2759-g7f3dcda]}} will go to https://github.com/MythTV/mythtv/commit/7f3dcdab</nowiki>
 
**** <nowiki>{{gitcommit|7f3dcdab|mythtv|[v0.17-2759-g7f3dcda]}} will go to https://github.com/MythTV/mythtv/commit/7f3dcdab</nowiki>
**** It will display as - {{gitcommit|4753643|mythweb}}
+
**** It will display as - {{gitcommit|7f3dcdab|mythtv|[v0.17-2759-g7f3dcda]}}
  
 
The revision hashes can be shortened by truncating them, but they must be at least long enough to ensure a unique key (currently recommended at 7 digits).
 
The revision hashes can be shortened by truncating them, but they must be at least long enough to ensure a unique key (currently recommended at 7 digits).
 
</noinclude>
 
</noinclude>

Revision as of 20:48, 14 January 2011

[{{{1}}}]


This template is used to provide a link to the MythTV's github server by change set. This template defaults to the mythtv repository, but can be forced to use any under the MythTV project.

Usage:

  • For commits in the MythTV repository (and all branches within)
    • {{gitcommit|1}}
      • Where 1 equals the git SHA-1 tag, with at least 7 of the first characters (preferred).
      • Example:
        • {{gitcommit|0a3fc07}} will go to https://github.com/MythTV/mythtv/commit/0a3fc07
        • It will display as - [0a3fc07]
  • For commits to other MythTV repositories (and all branches within)
    • {{gitcommit|1|2}}
      • 1 = the git SHA-1 tag, with at least 7 of the first characters (preferred).
      • 2 = a MythTV repository, current options are:
        • extras
        • packaging
        • mythweb
        • myththemes
        • nuvexport
        • mythtv (default)
      • Example:
        • {{gitcommit|4753643|mythweb}} will go to https://github.com/MythTV/mythweb/commit/4753643
        • It will display as - [4753643]
  • To add an optional display instead of the GIT hash, you can use an optional third parameter. However, you must explicitly use the second parameter in this case and classify the repository.
    • {{gitcommit|1|2|3}}
      • 1 = the git SHA-1 tag, with at least 7 of the first characters (preferred).
      • 2 = a MythTV repository, current options are:
        • extras
        • packaging
        • mythweb
        • myththemes
        • nuvexport
        • mythtv (default)
      • 3 = optional display instead of hash (i.e., git describe output such as "[v0.17-2759-g7f3dcda]")
      • Example:
        • {{gitcommit|7f3dcdab|mythtv|[v0.17-2759-g7f3dcda]}} will go to https://github.com/MythTV/mythtv/commit/7f3dcdab
        • It will display as - [[v0.17-2759-g7f3dcda]]

The revision hashes can be shortened by truncating them, but they must be at least long enough to ensure a unique key (currently recommended at 7 digits).