Changes between Initial Version and Version 1 of GitLocationPlugin


Ignore:
Timestamp:
Sep 21, 2009, 10:35:41 PM (15 years ago)
Author:
Andreas Zeidler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitLocationPlugin

    v1 v1  
     1= Git Location Plugin =
     2
     3== Description ==
     4
     5Adds a Git Location link to the contextual navigation under Browse Source. The link points to the Git URL for the folder you're viewing. This is very handy for making checkouts and such.
     6
     7== Installation ==
     8
     9Follow the normal [http://trac.edgewall.org/wiki/TracPlugins egg installation procedures].
     10
     11Under the `[components]` section, enable the plugin:
     12{{{
     13[components]
     14gitlocation.* = enabled
     15}}}
     16
     17Finally, add a section to your project's trac.ini:
     18{{{
     19[git]
     20repository_url = git@foo.com:foobar
     21}}}
     22
     23== Source ==
     24
     25You can browser the source from [http://github.com/witsch/TracGitLocation/ github] using Git, or check it out via:
     26{{{
     27$ git clone git://github.com/witsch/TracGitLocation.git
     28}}}
     29
     30== Credits ==
     31
     32Git 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!
     33
     34== Version History ==
     35
     36 1.0::
     37  Initial release