MacOs 安装局域网 gitlab 记录

1、安装git

brew install git
==> Downloading https://homebrew.bintray.com/bottles/git-2.7.0.el_capitan.bottle
######################################################################## 100.0%
==> Pouring git-2.7.0.el_capitan.bottle.tar.gz
==> Caveats
The OS X keychain credential helper has been installed to:
  /usr/local/bin/git-credential-osxkeychain

The "contrib" directory has been installed to:
  /usr/local/share/git-core/contrib

Bash completion has been installed to:
  /usr/local/etc/bash_completion.d

zsh completion has been installed to:
  /usr/local/share/zsh/site-functions

Emacs Lisp files have been installed to:
  /usr/local/share/emacs/site-lisp/git
==> Summary
  /usr/local/Cellar/git/2.7.0: 1,407 files, 235.8M

2、配置git账户和生成token

git config --global user.name "programmer"
git config --global user.email "[email protected]"

ssh-keygen -t rsa -C "[email protected]"

保存key的位置
/var/root/.ssh/id_rsa

3、配置gitlab

git config --global http.proxy http://192.168.43.232:1080

3、安装gitlab-ci-multi-runner

brew install gitlab-ci-multi-runner
==> Downloading https://homebrew.bintray.com/bottles/gitlab-ci-multi-runner-0.7.
######################################################################## 100.0%
==> Pouring gitlab-ci-multi-runner-0.7.2.el_capitan.bottle.1.tar.gz
  /usr/local/Cellar/gitlab-ci-multi-runner/0.7.2: 4 files, 11.8M

你可能感兴趣的:(macos,gitlab,elasticsearch)