Kexi/Git: Difference between revisions
Appearance
< Kexi
No edit summary |
|||
Line 10: | Line 10: | ||
Then fetch all branches: | Then fetch all branches: | ||
git remote update work | git remote update work | ||
git fetch work | |||
Now you can push local commits to the new private public repo without disrupting the official one: | Now you can push local commits to the new private public repo without disrupting the official one: | ||
git push work {yourbranch} | git push work {yourbranch} |
Revision as of 01:22, 3 February 2018
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}