Git版本控制 - 1. 环境配置
Posted r0124
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git版本控制 - 1. 环境配置相关的知识,希望对你有一定的参考价值。
配置账号信息
- 登陆Linux服务器设置账号和邮箱
git config --global user.name "username"
git config --global user.email "youremail"
- 生成并添加ssh-key
ssh-keygen -t rsa -C "youremail"
一直回车就行,不需要输入任何内容。
- 添加ssh-key到gitlab或者github
通过网页登陆gitlab或者github,点击右上角个人头像,点击Settings
。选择左边SSH Keys
,在服务器上执行cat ~/.ssh/id_rsa.pub
,将内容添加到Key对话框,Title随意,点击Add key
。
alias配置别名
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global alias.hist ‘log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short‘
git config --global alias.type ‘cat-file -t‘
git config --global alias.dump ‘cat-file -p‘ Linux 用户home 目录下配置
设置和取消代理
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.proxy ‘socks5://127.0.0.1:1080‘
git config --global https.proxy ‘socks5://127.0.0.1:1080‘
git config --global --unset http.proxy
git config --global --unset https.proxy
以上是关于Git版本控制 - 1. 环境配置的主要内容,如果未能解决你的问题,请参考以下文章
QT应用编程: QtCreator配置Git版本控制(码云)