Kexi/Git: Difference between revisions

From KDE Community Wiki
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Create you own remote git clone ==
KEXI source code is stored and managed within the shared KDE infrastructure.
See how to get write access: [[Sysadmin/GitKdeOrgManual#How_to_get_read-write_developer_access]].


Then to e.g. create a 'work' repo that is a clone of 'kexi' repo:
Visit the [[Sysadmin/GitKdeOrgManual]] page for instructions on how use git and gitlab to work with source code repositories.
ssh git@git.kde.org clone kexi work
 
Then add it to your local repo:
git remote add ssh://[email protected]/clones/kexi/{yourusername}/work.git
 
Then fetch all branches:
git remote update work
 
Now you can push local commits to the new private public repo without disrupting the official one:
git push work {yourbranch}

Latest revision as of 20:33, 17 May 2023

KEXI source code is stored and managed within the shared KDE infrastructure.

Visit the Sysadmin/GitKdeOrgManual page for instructions on how use git and gitlab to work with source code repositories.