https://bugzilla.wikimedia.org/show_bug.cgi?id=49906

--- Comment #3 from Antoine "hashar" Musso <[email protected]> ---
So to find out what is not up to date:

Fetch the extensions:

 git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions.git 
 cd extensions
 git submodule update --init

Then for each submodules look at the number of commits between HEAD (the
currently checked out version locally) and origin/master (the version in
gerrit):

 git submodule foreach 'test "$(git rev-list HEAD..origin/master --count)" =
"0"  && echo "Up to date." || echo "ERROR!"'

Gives out something like:

 ...
 Entering 'AuthorProtect'
 Up to date.
 Entering 'AutoCreateCategoryPages'
 ERROR!

That extension is indeed lagging:

hashar:~/extensions/AutoCreateCategoryPages$ git log --oneline --decorate 
--all -n4
14a097d (origin/master, origin/HEAD, master) Localisation updates from
http://translatewiki.net.
981a381 (HEAD) Localisation updates from http://translatewiki.net.
e01f64e Add .gitreview and .gitignore
7ae6dd3 (origin/REL1_21) Localisation updates from http://translatewiki.net.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to