码迷,mamicode.com
首页 > 其他好文 > 详细

Git版本控制 - 1. 环境配置

时间:2020-05-10 12:57:28      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:pre   输入   在服务器   class   版本控制   cat   git   proxy   控制   

配置账号信息

  1. 登陆Linux服务器设置账号和邮箱
git config --global user.name "username"
git config --global user.email "youremail"
  1. 生成并添加ssh-key
ssh-keygen -t rsa -C "youremail"

一直回车就行,不需要输入任何内容。

  1. 添加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. 环境配置

标签:pre   输入   在服务器   class   版本控制   cat   git   proxy   控制   

原文地址:https://www.cnblogs.com/R0124/p/12862410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!