Docker 使用 buildx 构建多平台镜像
目录
Docker
apt-get install gitgit 配置文件
git 配置文件有三个:
/etc/gitconfig是系统级配置文件,使用git config --system命令进行修改。~/.gitconfig或~/.config/git/config是用户级配置文件,使用git config --global命令进行修改。local_dir/.git/config是仓库级配置文件,使用git config --local命令进行修改。
设置用户信息
$ git config --global user.name "username"
$ git config --global user.email username@example.com设置 git 默认编辑器
git config --global core.editor emacs