blob: 7fb435bad3d31e52db5c9f5105e8e8bd27cb648c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# How to access
You will need your public ssh key: ~/.ssh/id_rsa.pub
If you don't have one use `ssh-keygen`
``` shell
ssh root@bauherren.ovh
su git
nano ~/.ssh/authorized_keys
# go to end and paste the contents of your local ~/.ssh/id_rsa.pub
exit # GO TO YOUR LOCAL MACHINE NOW
git clone ssh://git@bauherren.ovh:/var/git/bauherren
```
Now you should be able to edit and push when done.
|