1. 程式人生 > >Git入門--Git&GitHub&Gitee

Git入門--Git&GitHub&Gitee

入門 git入門 配置 登錄 odm ref ssh-key dea pro

一、Git安裝(傻瓜式安裝)

官網地址:https://git-scm.com/

註意點:

技術分享圖片

二、配置Git

  1.項目級別/倉庫級別:僅在當前本地庫範圍內有效  

git config user.name tom_pro 
git config user.email [email protected] 
信息保存位置:./.git/config 文件

  2.系統用戶級別:登錄當前操作系統的用戶範圍

git config --global user.name tom_glb 
git config--global [email protected] 
信息保存位置:~/.gitconfig 文件

三、配置SSH

  1 、生成秘鑰

    $ ssh-keygen -t rsa -C “您的郵箱地址”;

  2 、將秘鑰放到碼雲的ssh公有秘鑰中

  3 、克隆代碼:$ git clone “ssh地址”

四、idea中使用Git插件

  技術分享圖片

技術分享圖片

技術分享圖片

Git入門--Git&GitHub&Gitee