Changes between Version 3 and Version 4 of GitLocationPlugin


Ignore:
Timestamp:
Nov 3, 2015, 9:50:31 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged as external

Legend:

Unmodified
Added
Removed
Modified
  • GitLocationPlugin

    v3 v4  
    1 = Git Location Plugin =
     1[[PageOutline(2-5,Contents,pullout)]]
    22
    3 == Description ==
     3= Git Location Plugin
    44
    5 Adds the Git Location to the contextual navigation under Browse Source.  Even though with Git this info is static, i.e. it doesn't change depending on which folder is browsed in Trac, it still comes in handy for making checkouts and such.
     5== Description
     6
     7This plugin adds the Git Location to the contextual navigation under Browse Source. Even though with Git this info is static, ie it doesn't change depending on which folder is browsed in Trac, it still comes in handy for making checkouts and such.
    68
    79[[Image(screenshot.png)]]
    810
    9 == Installation ==
     11== Source
     12
     13You can browser the source from [http://github.com/witsch/TracGitLocation/ github] using Git, or check it out via:
     14{{{#!sh
     15$ git clone git://github.com/witsch/TracGitLocation.git
     16}}}
     17
     18== Installation
    1019
    1120Follow the normal [http://trac.edgewall.org/wiki/TracPlugins egg installation procedures].
    1221
    1322Under the `[components]` section, enable the plugin:
    14 {{{
     23{{{#!ini
    1524[components]
    1625gitlocation.* = enabled
     
    1827
    1928Finally, add a section to your project's trac.ini:
    20 {{{
     29{{{#!ini
    2130[git]
    2231repository_url = git@foo.com:foobar
    2332}}}
    2433
    25 == Source ==
    26 
    27 You can browser the source from [http://github.com/witsch/TracGitLocation/ github] using Git, or check it out via:
    28 {{{
    29 $ git clone git://github.com/witsch/TracGitLocation.git
    30 }}}
    31 
    32 == Credits ==
     34== Credits
    3335
    3436Git Location is a shameless rip-off of Erik Rose' [http://trac-hacks.org/wiki/SubversionLocationPlugin Subversion Location plugin] and therefore also based on jhammel's [http://trac-hacks.org/wiki/SvnUrlsPlugin SvnUrlsPlugin]. Thanks, Erik & jhammel!
    35 
    36 == Version History ==
    37 
    38  1.0::
    39   Initial release