A painless self-hosted Git service https://git.autonomic.zone
This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
KawaiiPunk 6caf467fe1
continuous-integration/drone/push Build is running Details
Improved README formatting
2020-06-25 20:00:32 +01:00
.drone.yml Use swarm deployment for drone 2020-06-23 12:15:17 +02:00
.gitignore Add vault lookup script 2020-03-22 12:50:51 +01:00
README.md Improved README formatting 2020-06-25 20:00:32 +01:00
app.ini.tmpl Match old configuration 2020-06-23 13:36:38 +02:00
compose.yml Drop quotes, causes issues 2020-06-23 16:07:25 +02:00

README.md

git.autonomic.zone

Build Status

https://git.autonomic.zone

Migrating local repos

Recently we moved our Gitea instance to use docker-swarm. This requires changing the origin on your repos hosted here. You may need to use a combination of the following commands.

git pull
git remote rm origin && git remote add origin ssh://git@git.autonomic.zone:2222/autonomic-cooperative/git.autonomic.zone.git
git branch --set-upstream-to=origin/master master
git pull

You may also need to run a command similar to this to remove the previous server fingerprint from your known_hosts file or do it manually:

ssh-keygen -f "/home/user/.ssh/known_hosts" -R "[git.autonomic.zone]:222"