گِت Git لمطوري ليبر أوفيس

    From The Document Foundation Wiki
    This page is a translated version of the page Development/Git For LibreOffice Developers and the translation is 26% complete.
    Other languages:

    گِت Git هو نظام إدارة الاصدارات الموزعة (DVCS). هو نظام قوي جداً وبسيط في نفس الوقت، ولكن إذا لم تكن معتاداً على أنظمة إدارة الاصدارات، فإنه قد يكون مربكاً. ولكن لحسن الحظ يوجد على شبكة الانترنت العديد من المصادر الجيدة لتعلّم گِت Git مثل http://git-scm.com/. إذا لم تكن على معرفة بـ گِت Git، فينبغي أن تزور:

    بقية هذه المقالة ستفترض وجود معرفة تشغيل أساسية بـ گِت Git.

    معظم الشفرات المصدرية للـLibreOffice موجودة في مستودَع core لـ گِت git، ولكن بعض الوحدات توجد في مستودَعات أخرى منفصلة، الترجمات translations والمساعدة help والقواميس dictionaries. في أغلب الأحوال لن تحتاج على الأرجح إلى تعديل هذه المستودَعات.

    إدارة فروع گِت Git

    انظر: Development/Branches

    A tip for displaying branch in your terminal prompt (Linux)

    It is possible to display the branch you are working on in a style like this:

    ~/git/core/helpcontent2 (master)$

    To achieve this, you can modify your PS1 prompt variable by adding the following to your $HOME/.bashrc:

    source /usr/share/git/completion/git-prompt.sh # <span lang="en" dir="ltr" class="mw-content-ltr">Note: the exact location of this file can vary depending on your system. On Debian-based systems, you can find the location with: dpkg -L git | grep prompt</span>
    export PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \W\[\033[31m\]$(__git_ps1 " (%s)")\[\033[01;34m\]$\[\033[00m\] '

    Another visual aid for the terminal is delta, which provides syntax highlighting for git, diff, and grep output.

    Hack and commit on a stable branch

    Stable branches are created from master or another stable branch to stabilize the code base for the release and further maintenance updates. There are some rules during the beta phase:

    There are more strict rules during the release candidate phase:

    • Allowed are safe fixes that are reviewed by another person, see below
    • Allowed are changes in translations; it is recommended to ask for review on the native l10n mailing list

    Please, do not commit the fixes directly during the RC phase. Instead, please send your patch to gerrit or ask another developer for review on the libreoffice@lists.freedesktop.org mailing list, personal mail, on IRC or via the related bug entry. The fix should be committed by the reviewer using:

    git commit -s --author='<span lang="en" dir="ltr" class="mw-content-ltr">Author name <author@mail.address></span>'

    What to do when git pull -r does not want to operate

    It is usually due to local changes in your repository. You can either get rid of them, using:

    git checkout -f
    git pull -r

    or stash them temporarily, and get them back again after the git pull -r:

    git stash
    git pull -r
    git stash pop

    Reset your modified repo to a “vanilla” repository

    $ git reset --hard origin/master

    The above command will discard all your local changes (whether committed or not) and reset the current branch that you are on to the one on the remote repository.

    Delete untracked or ignored files

    To clean out junk like temp files and old development logs and create a pristine working directory, give the command

    $ git clean -fdx

    Improve git cloning for slow network

    If your network is slow, you can clone/checkout only the branch you need, or do a shallow/partial clone. You can do this from the LibreOffice mirror in GitHub, but remember to add a remote for the original repository.

    For example, cloning from Github with depth=1 is like this:

    git clone --depth=1 https://github.com/libreoffice/core

    Then, you have to make sure the remote is set to the original repository. To do that, edit the .git/config file, so that the remote section is like this:

    [remote "origin"]
    	url = git://git.libreoffice.org/core
    	fetch = +refs/heads/*:refs/remotes/origin/*

    Reorder, squash and in general tweak your local history: git rebase -i

    git rebase -i is a powerful tool that allows you to “rewrite” your local history.

    Warning.svg

    Warning:
    This should only be done on commits that have not been pushed to master or a release branch yet!


    Let’s say you are on master and the last 3 commits are A,B,C=HEAD but C is actually a correction of the commit A that you missed before committing B. So what you would want to do is to merge A and C together and end-up with A',B as history.

    To do that you can give the command:

    git branch safehead HEAD

    This is just in case something goes very wrong and you want to just undo everything and go back to the initial state.

    git rebase -i HEAD~3

    This should bring, in your favorite editor (as set by the variable $EDITOR) a list of the last 3 commits, from the oldest to the newest (the reverse order than normally in git log), so C is the last of the list:

    pick 726fe9c enable localization of extension descriptions in mysqlc
    pick 9ab6ecf fix en-US only build
    pick a18bfb0 Revert "enable localization of extension descriptions in sdext"
    
    # Rebase 1846533..a18bfb0 onto 1846533
    #
    # Commands:
    #  p, pick = use commit
    #  r, reword = use commit, but edit the commit message
    #  e, edit = use commit, but stop for amending
    #  s, squash = use commit, but meld into previous commit
    #  f, fixup = like "squash", but discard this commit's log message
    #  x <cmd>, exec <cmd> = Run a shell command <cmd>, and stop if it fails
    #
    # If you remove a line here THAT COMMIT WILL BE LOST.
    # However, if you remove everything, the rebase will be aborted.
    #
    

    Edit it, moving commit C one-up and changing its action to squash:

    pick 726fe9c enable localization of extension descriptions in mysqlc
    squash a18bfb0 Revert "enable localization of extension descriptions in sdext"
    pick 9ab6ecf fix en-US only build
    

    Then save and exit the editor.

    Now you can edit the commit message of the merged commit:

       # This is a combination of 2 commits.
       # The first commit's message is:
       
       enable localization of extension descriptions in mysqlc
       
       Change-Id: I7141eea0fe7f72408da0d2a5ebe4a5e2891b6b7d
       
       # This is the 2nd commit message:
       
       Revert "enable localization of extension descriptions in sdext"
       
       Change-Id: Iff01d31792a13a14ea720c477417217af0c01642
    
    Note pin.svg

    Note:
    If you intend to push the commit to gerrit, the ChangeId line is crucial: gerrit uses it to find an existing patch that will be updated with a new revision. So make sure to take the ChangeId line from the appropriate commit (usually the one you already uploaded to gerrit before), do not edit it, and remove the ChangeId line of the less important commit that you want to get rid of.

    Once you have combined the 2 commit messages, save and exit again.

    If everything went nicely you should be on master with your HEAD on B and A+C fused into one commit A', just before B. If things went wrong and you are lost:

    git rebase --abort

    If things are not reverted to the way they should (compounded wrongness) you can say this to pretend nothing ever happened:

    git reset --hard safehead

    الحصول على صلاحيات الاعتماد واستخدامها

    من أجل الحصول على صلاحيات الاعتماد تحتاج إلى أن تكون "تحت رعاية". بمجرد أن ترسل ملفات الإصلاح وتصبح معروفاً لن يشكل لك هذا عائقاً، ولكن يفضل أن تنتظر حتى يطلب منك ذلك. إذا طلب منك ذلك ( أو طلبت من أحد رعايتك)، سوف تحتاج أن تحصل على حساب