Kexi/Git

From KDE Community Wiki
Revision as of 01:13, 3 February 2018 by Jstaniek (talk | contribs) (Created page with "== Create you own remote 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Create you own remote 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}