Kexi/Git

From KDE Community Wiki
Revision as of 01:14, 3 February 2018 by Jstaniek (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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}