美文网首页
Ubuntu之git配置

Ubuntu之git配置

作者: zhujunhua | 来源:发表于2017-10-09 10:11 被阅读0次

安装git

//添加源
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
git --version

clone 项目

git clone xx@xxx:xxx

git配置

命令行执行后生成的配置文件位于: ~/.gitconfig

#执行以下命令,不是直接粘贴在~/.gitconfig文件中!!
# 指定 user.email
git config --global user.email "jh.zhu@xxx.com"
# 指定 user.name
git config --global user.name "zhujh"
# 指定编辑器为vim
git config --global core.editor "vim"

ssh私钥

下载之前保存的ssh 私钥,拷贝到 ~/.ssh目录下,文件名 id_rsa(可以使用其他名字,需要配置,后续补充)
备注:如果之前没有ssh私钥,需要新生成。
如果ssh私钥有密码,为了避免每次push输入密码,可以将其添加到ssh-agent的高速缓存中:

ssh-agent bash
ssh-add ~/.ssh/id_rsa

多个ssh的key配置:参考:git 配置多个SSH-Key
~/.ssh文件夹下创建config文件:

# gitlab
Host gitlab.com
    User git
    HostName gitlab.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa
# github
Host github.com
    HostName github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/github_rsa

参考:
https://my.oschina.net/stefanzhlg/blog/529403

相关文章

网友评论

      本文标题:Ubuntu之git配置

      本文链接:https://www.haomeiwen.com/subject/ecpuyxtx.html