KDb/Download: Difference between revisions

From KDE Community Wiki
< KDb
(Replace "Contributor account" with "Developer account" for consistency and turn link relative)
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Note|These instruction are for the current development, unstable version, so called '''master'', because there were no stable releases of Predicate yet.}}
{{Note|These instruction are for the current development, unstable version, so called '''master'', because there were no stable releases of KDb yet.}}


Download Predicate from the [https://projects.kde.org/projects/playground/libs/predicate/repository KDE Git repository].  
Download KDb from the [https://projects.kde.org/projects/playground/libs/kdb/repository KDE Git repository] as explained below.  


==Details==
__TOC__
'''Option 1:''' If you are not and do not plan to be Predicate developer, you can get the source code anonymously.
==Source code: For users==
If you are not and do not plan to be KDb developer, you can get the source code anonymously.
 
First, make sure you have the ''git'' program installed.


Variant 1.1: Use GIT anonymous access:
Variant 1.1: Use GIT anonymous access:
  $ git clone git://anongit.kde.org/predicate
  $ git clone git://anongit.kde.org/kdb


Variant 1.2: Via HTTP anonymous access:
Variant 1.2: Via HTTP anonymous access:
  git clone http://anongit.kde.org/predicate
  git clone http://anongit.kde.org/kdb


Variant 1.3: Download the latest archive with the latest '''copy''' of the git repository (about 20MB for now). Click here and the uncompress the archive:
Variant 1.3: Download the latest archive with the latest '''copy''' of the git repository (about 20MB for now). Click here and the uncompress the archive:
  http://anongit1.kde.org/predicate/predicate-latest.tar.gz
  http://anongit.kde.org/kdb/kdb-latest.tar.gz


Unpack and cd into ''predicate'' directory, then run  
Unpack and cd into ''kdb'' directory, then run  


  $ ./initrepo.sh
  $ ./initrepo.sh
Line 25: Line 28:
to update, or
to update, or


  $ git rebase origin/master
  $ git pull --rebase origin master
 
if you have local commits.


if you have local changes.
==Source code: For contributors==
'''Option 2:'''  If you are or plan to contribute to KDb, use your [[Infrastructure/Get_a_Contributor_Account | KDE Developer account]] with read/write access:
git clone git@git.kde.org:kdb


'''Option 2:'''  If you are or plan to be Predicate developer, use read/write access:
==Binaries==
git clone [email protected].org:predicate
There were no stable releases of KDb, therefore they are not packaged.


==See also==
==See also==
*[https://projects.kde.org/projects/playground/libs/predicate/activity Project Activity]
*[[../Build/]] KDb
*[http://quickgit.kde.org/index.php?p=predicate.git Git Web interface]
*[https://projects.kde.org/projects/playground/libs/kdb/activity Project Activity]
*[http://quickgit.kde.org/index.php?p=kdb.git Git Web interface]

Latest revision as of 13:45, 21 April 2016

Note

These instruction are for the current development, unstable version, so called 'master, because there were no stable releases of KDb yet.


Download KDb from the KDE Git repository as explained below.

Source code: For users

If you are not and do not plan to be KDb developer, you can get the source code anonymously.

First, make sure you have the git program installed.

Variant 1.1: Use GIT anonymous access:

$ git clone git://anongit.kde.org/kdb

Variant 1.2: Via HTTP anonymous access:

git clone http://anongit.kde.org/kdb

Variant 1.3: Download the latest archive with the latest copy of the git repository (about 20MB for now). Click here and the uncompress the archive:

http://anongit.kde.org/kdb/kdb-latest.tar.gz

Unpack and cd into kdb directory, then run

$ ./initrepo.sh

From now on, you can run

$ git pull

to update, or

$ git pull --rebase origin master

if you have local commits.

Source code: For contributors

Option 2: If you are or plan to contribute to KDb, use your KDE Developer account with read/write access:

git clone [email protected]:kdb

Binaries

There were no stable releases of KDb, therefore they are not packaged.

See also