I followed the instruction in the announcement email:
"To do a simple Git clone, the command is: git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git"
however this gives me version 1.20alpha.
'git branch' shows no branches other than master.
I can't find any documentation at mediawiki.org
do I need to clone a different repository?
~~John Laurino
On Fri, Mar 23, 2012 at 1:14 PM, john@phillyrd.org wrote:
I followed the instruction in the announcement email:
"To do a simple Git clone, the command is: git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git"
however this gives me version 1.20alpha.
'git branch' shows no branches other than master.
`git branch -r` will show you all of the remote branches.
To checkout the 1.18 branch, you'd then do `git checkout origin/REL1_18`
-Chad
March 23 2012 18:30, Chad wrote:
`git branch -r` will show you all of the remote branches.
To checkout the 1.18 branch, you'd then do `git checkout origin/REL1_18`
One can get a list of tag with `git tag -l`
Sorted with `git tag -l | sort -n -t. -k1 -k2 -k3`
On Fri, Mar 23, 2012 at 16:44, Antoine Musso hashar+wmf@free.fr wrote:
March 23 2012 18:30, Chad wrote:
`git branch -r` will show you all of the remote branches.
To checkout the 1.18 branch, you'd then do `git checkout origin/REL1_18`
One can get a list of tag with `git tag -l`
Sorted with `git tag -l | sort -n -t. -k1 -k2 -k3`
better ordering: `git tag -l | sort -V`
I've started filling out the 'install from git' page on mediawiki.org with some of this information:
https://www.mediawiki.org/wiki/Download_from_Git
Of course, be bold and add to it as you see fit.
On Fri, Mar 23, 2012 at 1:55 PM, Jeremy Baron jeremy@tuxmachine.com wrote:
On Fri, Mar 23, 2012 at 16:44, Antoine Musso hashar+wmf@free.fr wrote:
March 23 2012 18:30, Chad wrote:
`git branch -r` will show you all of the remote branches.
To checkout the 1.18 branch, you'd then do `git checkout origin/REL1_18`
One can get a list of tag with `git tag -l`
Sorted with `git tag -l | sort -n -t. -k1 -k2 -k3`
better ordering: `git tag -l | sort -V`
Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l
wikitech-l@lists.wikimedia.org