2018-10-09 11:14:05 +04:00
|
|
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
|
|
|
|
2018-11-16 20:53:33 +04:00
|
|
|
# Liste de préfixes permettant de taper le nom d'un dépôt plus rapidement e.g
|
2019-09-28 12:33:03 +04:00
|
|
|
# repoctl create g/ssi-php/myproj
|
|
|
|
# repoctl create v:modules/myproj
|
2018-11-16 20:53:33 +04:00
|
|
|
# sont équivalents à
|
2019-09-28 12:33:03 +04:00
|
|
|
# repoctl create https://git.univ-reunion.fr/ssi-php/myproj
|
|
|
|
# repoctl create git@vcs.univ.run:modules/myproj
|
2018-11-16 20:53:33 +04:00
|
|
|
# Le format est ALIAS=ACTUAL
|
2019-09-11 22:16:07 +04:00
|
|
|
#
|
|
|
|
# Ces définitions fonctionnent aussi pour tous les scripts qui utilisent
|
|
|
|
# repoctl, dont notamment pclone et pcrone
|
2018-11-16 20:53:33 +04:00
|
|
|
REPO_PREFIXES=(
|
|
|
|
s:=git@git.univ-reunion.fr:
|
|
|
|
g/=https://git.univ-reunion.fr/
|
|
|
|
v:=git@vcs.univ.run: av/=https://vcs.univ-reunion.fr/anongit/
|
|
|
|
p:=pgit@vcs.univ.run: ap/=https://pvcs.univ-reunion.fr/anongit/
|
2019-09-28 12:33:03 +04:00
|
|
|
j/=https://git.jclain.fr/
|
2018-11-16 20:53:33 +04:00
|
|
|
)
|
|
|
|
|
2018-10-09 11:14:05 +04:00
|
|
|
# Définitions des types de dépôt. Le format est NAME:TYPE:PREFIX
|
|
|
|
# * NAME est utilisé pour définir des configurations supplémentaires
|
2018-11-16 20:53:33 +04:00
|
|
|
# * TYPE peut valoir gitolite ou gogs (ou gitea qui est un alias de gogs). Le
|
|
|
|
# type par défaut est 'gitolite'
|
2018-10-09 11:14:05 +04:00
|
|
|
REPO_TYPES=(
|
2018-11-16 20:53:33 +04:00
|
|
|
ur:gitea:https://git.univ-reunion.fr/
|
2019-09-28 12:33:03 +04:00
|
|
|
jclain:gitea:https://git.jclain.fr/
|
2018-10-09 11:14:05 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Configuration de l'accès à l'API gogs
|
|
|
|
# un nom de dépôt est de la forme user/repo. Si user != $GOGS_USER alors on crée
|
|
|
|
# dans une organisation
|
2018-11-16 20:53:33 +04:00
|
|
|
#ur_GOGS_URL=https://git.univ-reunion.fr
|
2018-10-09 11:14:05 +04:00
|
|
|
#ur_GOGS_USER="$USER"
|
|
|
|
#ur_GOGS_KEY=
|