دليل:باي ويكي بوت/غريت
مصطلحات
- Git - نظام تحكم بالإصدار. بديل SVN.
- Gerrit - منصة مراجعة نصوص برمجية (https://gerrit.wikimedia.org). بديل مراجعة الكود
- core - الفرع (الرئيسي) الحقيقي المعروف سابقًا باسم "rewrite".
للمستخدمين
عملاء غت
- مستخدمو ويندوز: نحن ننصح باستخدام تورتويز غت مع غت للويندوز. ويُستحسَن تثبيت تورتويز غت أولاً.
- ماك أو إس/لينكس: commandline git - https://git-scm.com/ or brew install git(Homebrew, macOS)
على سبيل المثال لتحميل النواة عبر سطور الأوامر:
$ git clone --recursive --branch stable https://gerrit.wikimedia.org/r/pywikibot/core.git
للتحديث:
# بافتراض أننا بالفعل بداخل "النواة"
$ git pull origin stable
$ git submodule update # Updates i18n messages
إن كنت كسولاً وتريد المقدرة على فعل ذلك كله مرةً واحدة، يمكنك تنفيذ:
# بافتراض أنك بالفعل بداخل "النواة":
$ git pull origin stable --recurse-submodules # This updates everything
Note that the repositories are somewhat large (>100MB). If this is an issue, use
$ git clone --recursive --branch stable --depth 3 https://gerrit.wikimedia.org/r/pywikibot/core.git
to just retrieve the latest versions.
استخدام سفن
As of January 2024, it is no longer possible to use SVN to download Pywikibot. We suggest to use pip to install and update Pywikibot instead.
وصلات
عميلك قد يسألك على وصلة المستودع.
الوصلات تتبع الشكل الآتي:
https://gerrit.wikimedia.org/r/pywikibot/[repo name]
.
وبالنسبة لنسخة النواة:
https://gerrit.wikimedia.org/r/pywikibot/core
.
توزيعات ليلية
يمكنك تحميل كافة الحزم أو تصفح النص المصدري عبر صفحة التحميل في ويكيميديا فورج
- لو كنت بحاجة لمساعدة في إعداد بوت Pywikibot الخاص بك، يرجى زيارة قناة #pywikibot على آي آر سي تواصل أو القائمة البريدية pywikibot@.
للمطورين
كيفية إرسال الإصلاحات...تهيئة غيت أو غريت إلخ.
اقرأ القواعد الإرشادية، ثم اتبع الخطوات في Gerrit/Getting started وشغِّل هذا:
#لتعديل النواة
$ git clone --recursive ssh://USERNAME@gerrit.wikimedia.org:29418/pywikibot/core.git
وبعد تعديل النصوص اتبع الخطوات في Gerrit/Tutorial
- ويندوز
- المطور الذي يستخدم ويندوز قد يستخدم أيضًا Gerrit/TortoiseGit tutorial لمعلومات أكثر.
مثال (خطوة بخطوة)
نفَّذ الآتي، خطوةً بخطوةً:
- ثبت البرنامج:
- انسخ المستودع وثبته:
- انسخ مستودع غيت بجميع وحداته الفرعية باستخدم (مثل
svn checkout
)وانتظر، فهذه الخطوة ستستغرق بعض الوقت$ git clone --recursive ssh://USERNAME@gerrit.wikimedia.org:29418/pywikibot/core.git pywikibot-git
- أدخل المجلد
$ cd pywikibot-git
- هيئ إعدادات غيت لهذا المستودع أو المجلد فقط (وليس عام، مثلاً كما في حالة أن تمتلك مستودع زائف لعدة مشاريع) و
$ git config user.email "EMAIL"
لكي تهيئ هذا في النصوص كافة، استخدم وسيط$ git config user.name "USERNAME"
--global
- هيئ الطرفية لإخراج رسائل إنجليزية (للعمل كما ينبغي مع مراجعة غيت، انظر غريت/مراجعة-غيت#استكشاف المشاكل) ويجب عمل هذا كل مرة تبدأ فيها طرفية جديدة، لتهيئة هذا بصورة دائمة، ضع هذا
$ alias git="LANG=C git"
bashrc
في ملف التثبيت - ثبت مراجعة غيت لهذا المستودع فقط وأدخل
$ git review -s
USERNAME
الخاص بك مرةً أخرى، وهذه خطوة مهمة - إن نسيتها، طبقًا غريت/الدليل#دفع مجموعة تغييراتك إلى غريت، فإنgit review
النهائية أدناه (التي تحتاجها لتنفذ تغييراتك للمراجعة) ستفشل - ومع ذلك يمكن حل هذا لاحقًا
- انسخ مستودع غيت بجميع وحداته الفرعية باستخدم (مثل
- اعمل بالمستودع، كتنفيذ إصلاحات للمراجعة:
- حوِّل إلى الفرع الرئيسي (قد لا تحتاج هذا)
$ git checkout master
- حدِّث الفرع الحالي للمراجعة على الإنترنت (مثل
svn update
)$ git pull
- حوِّل إلى الفرع الرئيسي (قد لا تحتاج هذا)
- create your own local temporary branch for working
$ git checkout -b MEANINGFUL_BRANCH_NAME
and try to choose aMEANINGFUL_BRANCH_NAME
with the help of the branch naming tips available – the branch can be removed when not needed anymore with$ git branch -D MEANINGFUL_BRANCH_NAME
- create your own local temporary branch for working
- now write some code; see the Git commands add, rm and mv to add, remove or rename files - when you're ready go to the next step
- commit your changes to your local temporary branch with (you can use
$ git commit --all
-a
instead of--all
and-R
instead of--no-rebase
) and, as used from svn, enter a meaningful commit message, e.g. a short description of your code changes
- commit your changes to your local temporary branch with
- optionally check your changes by looking at the committed data and make sure that you are sending what you wanted to
$ git show HEAD
- optionally check your changes by looking at the committed data
- send the data to the online repository, resp. gerrit for review (like
svn commit
)$ git review
- send the data to the online repository, resp. gerrit for review (like
- finally go to Gerrit, click on your change and write a reviewer name in the input box near the "Add Reviewer" button
- optionally/opt-in further settings:
- enable RCS keywords expansion (like svn:keywords
$Id$
) by using git hooks (explained in detail here - german only)
- enable RCS keywords expansion (like svn:keywords
- for core:
$ git config filter.rcs-keywords.smudge 'rcs-keywords.py %f'
$ git config filter.rcs-keywords.clean 'rcs-keywords.py'
- (may be we should consider using the git-rcs-keywords module as mentioned in dealing-with-svn-keyword-expansion-with-git-svn)
- for core:
Phabricator
Patches will be linked to a فبريكاتور task automatically if you mention 'Bug: T12345' in a line just before 'Change-Id: ....'. See Gerrit/Commit message guidelines for more information.
Problems, issues and work-a-rounds
jenkins-bot messages
https://integration.wikimedia.org/ci/job/pywikibot-core-tox-flake8/2591/console : FAILURE in ?s (non-voting)
The patchset committed did not pass flake8 code style checks. That says nothing about the functionality of the code but about the syntax and style.
https://integration.wikimedia.org/ci/job/pywikibot-core-tox-flake8-docstrings-mandatory/560/console : FAILURE in ?s (non-voting)
The patchset committed did not pass mandatory pep257 code style checks. That says nothing about the functionality of the code but about the inline documentation.
https://integration.wikimedia.org/ci/job/pywikibot-core-tox-nose/1448/console : FAILURE in ?s (non-voting)
The patchset committed did not pass pre-merge test suite. That indicates the code fails the basic tests, but a pass says nothing about the functionality of the modified code. There is a more extensive set of tests which developers should run pre-submission, and will run post merge.
This change could not be automatically merged with the current state of the repository. Please rebase your change and upload a new patchset.
The pachset cannot be merged automatically into current HEAD. Please consider Build failed due to merge conflict for a solution.
More info about this can be found in Gerrit/Tutorial#How to submit a patch and git review complains about multiple commits.