написане Wed, 06 Apr 2016 16:31:06 +0300, Freek de Kruijf <[email protected]>:

Op woensdag 6 april 2016 11:53:06 schreef Burkhard Lück:
Am Wednesday 06 April 2016, 11:34:18 schrieb Freek de Kruijf:
> When generating documentation for KF5 the system uses customization files
> like /usr/share/kf5/kdoctools/customization/nl/user.entities
>
> However a definition which is in the equivalent file for KDE4 is missing
> in
> that file. I use git to update such a file for KDE4, but I can't find how
> to update that file for KF5.

That file is in the repo quickgit.kde.org/?p=kdoctools.git in the directory
src/customization/nl

Indeed this the file. However I need some kind of cookbook description on how to update that file. For KDE4 I have the file ~/.gitconfig with definitions under headers [url "git://anongit.kde.org/"], [url "ssh://[email protected]/"],
[user], [push] and [core]

My public key is somewhere registered to give me commit rights.

I get the files with a "git clone ..." command. I know how to upload the
changes to a git repository.

So what should I add to ~/.gitconfig and what should be filled in on the above
shown dots?

KDE4 and KF5 repos work absolutely same.

So, for example, you have ~/.gitconfig with the following contents:

[user]
    name = Freek de Kruijf
    email = [email protected]
[color]
    ui = true
[url "git://anongit.kde.org/"]
    insteadOf = kde:
[url "[email protected]:"]
    pushInsteadOf = kde:
[alias]
    ci = commit
    up = pull --rebase
[push]
        default = matching

Then you clone the repo:

git clone kde:kdoctools

Change it and push back:

git ci -m "Update Dutch translation" -a
git push

Update repo:

git up

Hope this helps.

Best regards,
Yuri
_______________________________________________
kde-doc-english mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kde-doc-english

Reply via email to