Kexi/Git

From KDE Community Wiki
Revision as of 01:14, 3 February 2018 by Jstaniek (talk | contribs)

Create you own remote git clone

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:

ssh [email protected] 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}