Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major improvements #20

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Major improvements #20

wants to merge 4 commits into from

Commits on May 23, 2020

  1. Major improvements

    * update to the latest alpine version
    * support independant git account name from git-server repository location
    * update documentation
    fr123k committed May 23, 2020
    Configuration menu
    Copy the full SHA
    38de96e View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2020

  1. Configuration menu
    Copy the full SHA
    f585c1d View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. Configuration menu
    Copy the full SHA
    0723400 View commit details
    Browse the repository at this point in the history
  2. Add suuport for git clone from https://github.com/account` format as…

    … well
    
    The following .gitconfig will replace https with ssh.
    ```
    [url "ssh://[email protected]"]
    	insteadOf = https://github.com/
    ```
    
    This will change the behaviour of `git clone` from
    ```
    git clone https://github.com/fra123k/git-server-docker
    ```
    to
    ```
    git clone [email protected]:fr123k/git-servert-docker
    ```
    
    This correct but it results in ssh access denied because the local git
    server container only provide the `git` user and not the `fr123k` user
    ssh access.
    
    This solved by setting up account user of the github repository.
    At the moment only one account user is supported.
    fr123k committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    b49d2fa View commit details
    Browse the repository at this point in the history