blob: 2adbdeed28154878b17895abb18fb681ddd9cdee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
INSTALL
=======
Copy or symlink executables into your $PATH.
ln -s $PWD/git-* ~/.local/bin/
git-phab
========
Moved to https://phabricator.freedesktop.org/diffusion/GITPHAB/
git-fork
========
Publish your git repository to git.(internal.)collabora.co.uk. It will use ssh
to create a bare git repository in your $HOME/public_html/git/ and then push
'master' branch to it. Your repository should be immediately visible on the web
page. A 'remote' is added in your local repository to make easy to push more
branches afterward. It will be 'collabora' for public fork and
'collabora-internal' for private fork.
By default it push to git.internal.collabora.co.uk, unless --public option is
given.
If your collabora username is different than your local username, you can set
fork.username git config:
git config --global fork.username badger
Examples:
git fork
git push collabora-internal my-branch
git fork --public
git push collabora my-branch
|