Skip to content
Snippets Groups Projects
Commit 0370601e authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

Add initial repository importing from archlinux/infrastructure notes

parent 2fd45c73
No related branches found
Tags 2.2.0-95
No related merge requests found
......@@ -128,3 +128,24 @@ To automatically restart and recreate the container in order to test any new cha
```shell
docker-compose up -d --force-recreate
```
### Git history
This repository was created from the `roles/keycloak/files/theme` directory in the [archlinux/infrastructure@0f00ed47](https://gitlab.archlinux.org/archlinux/infrastructure/-/tree/0f00ed4702643ebe4c94b3cd7954475739d00b2f/roles/keycloak/files/theme) repository with the following commands:
```sh
git clone ssh://git@gitlab.archlinux.org:222/archlinux/infrastructure.git
cd infrastructure
git checkout 0f00ed4702643ebe4c94b3cd7954475739d00b2f
git filter-branch --subdirectory-filter roles/keycloak/files/theme --msg-filter 'sed "s/^keycloak: //"'
cd ../
mkdir keycloak-archlinux-theme
cd keycloak-archlinux-theme
git init
git remote add infra ../infrastructure
git fetch infra HEAD
git remote remove infra
git checkout -b master --no-track FETCH_HEAD
git remote add origin ssh://git@gitlab.archlinux.org:222/archlinux/keycloak-archlinux-theme.git
git push --set-upstream origin master
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment