Changes between Initial Version and Version 1 of Ticket #13611, comment 18
- Timestamp:
- Dec 5, 2019, 7:54:47 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13611, comment 18
initial v1 3 3 If Git is used, it is able to specify the sub directory using `#subdirectory=...`. Also, it is needed to specify the branch `trac-1.5` in `@<branch-name>`. 4 4 5 {{{ 6 pip install git+https://github.com/Gasol/trac-xmlrpcplugin.git@trac-1.5#subdirectory=trunk5 {{{#!sh 6 $ pip install git+https://github.com/Gasol/trac-xmlrpcplugin.git@trac-1.5#subdirectory=trunk 7 7 }}} 8 8 9 9 If Subversion is used, is is able to specify in the URL instead of `#subdirectory=...`. 10 10 11 {{{ 12 pip install svn+https://github.com/Gasol/trac-xmlrpcplugin/branches/trac-1.5/trunk11 {{{#!sh 12 $ pip install svn+https://github.com/Gasol/trac-xmlrpcplugin/branches/trac-1.5/trunk 13 13 }}} 14 14 15 15 It is able to install with a zip file as well. 16 16 17 {{{ 18 pip installpip install https://github.com/Gasol/trac-xmlrpcplugin/archive/trac-1.5.zip#subdirectory=trunk17 {{{#!sh 18 $ pip install https://github.com/Gasol/trac-xmlrpcplugin/archive/trac-1.5.zip#subdirectory=trunk 19 19 }}}