Kexi/Git
Appearance
< Kexi
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 git fetch work
Now you can push local commits to the new private public repo without disrupting the official one:
git push work {yourbranch}