Lenticular Cloud/Git: Difference between revisions

From Milliways
Created page with "# Description gitea instance Features: * https/ssh * ssh key * two factor # Activation Got to https://account.milliways.info to activate the git_gogs service. You can u..."
 
Zer0 (talk | contribs)
mNo edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
# Description
= Description =


gitea instance
Forgejo instance  


Features:
= Access =


* https/ssh
Go to https://authentik.milliways.info and select the app Forgejo
* ssh key
* two factor


The instance itself is hosted at https://git.milliways.info


# Activation


Got to https://account.milliways.info to activate the git_gogs service.
= Usage =


You can use your main password or multiple token like passwords for different devices.
If you are unfamiliar with code maintenance software https://forgejo.org/docs/latest/user is a good place to get started.
Don't hesitate to request support in Matrix if necessary.


# Clients


## ssh
== ssh ==
 
### ipv6


~/.ssh/config
   Host git.milliways.info
   Host git.milliways.info
     User git
     User git
Line 27: Line 24:




### ipv4 (use shell as proxy)
NOTE: This section is not necessary as Forgejo provides the entire path for eg. cloning a repository
 
  Host shell.milliway.info
    # 22 for ipv6
    Port 2222
    HostName shell.milliways.info
    User tuxcoder
 
  Host git.milliways.info
    User git
    Port 22
    ProxyJump shell.milliways.info

Latest revision as of 21:38, 28 October 2025

Description

Forgejo instance

Access

Go to https://authentik.milliways.info and select the app Forgejo

The instance itself is hosted at https://git.milliways.info


Usage

If you are unfamiliar with code maintenance software https://forgejo.org/docs/latest/user is a good place to get started. Don't hesitate to request support in Matrix if necessary.


ssh

~/.ssh/config

 Host git.milliways.info
   User git
   Port 22


NOTE: This section is not necessary as Forgejo provides the entire path for eg. cloning a repository