Git BoxExchanger migration / DONE

The BoxExchanger platform now uses self hosted GitLab on its own git.boxexchanger.net servers

Getting started

  1. Register in the git system git.boxexchanger.netarrow-up-right

  2. If necessary, add your SSH key to your account in https://git.boxexchanger.net/-/profile/keysarrow-up-right or add the Deploy token to the project

Command to automatically fix .git/config

This command will change the git server path in the .git/config file to change gitlab.com to the new server path ssh.boxexchanger.net

awk '{gsub("gitlab.com", "ssh.boxexchanger.net")}1' .git/config > temp && mv temp .git/config

Or manually modify the host

In the file, you need to change[email protected]: to [email protected]:

Example:

[remote "origin"]
        url = [email protected]:boxexchanger/exchanger-api.git
        fetch = +refs/heads/*:refs/remotes/origin/*

Last updated