Git MAC電腦Git使用

2021-10-19 02:56:49 字數 1117 閱讀 2460

配置多個git賬戶,以公司和個人為例

1.開啟終端輸入以下命令

//生成公司ssh-keygen

ssh-keygen -t rsa -b 4096 -c "[email protected]"

//生成個人ssh-keygen

ssh-keygen -t rsa -c "[email protected]" -f ~/.ssh/username.id_rsa 為儲存的檔名可自定義

2.出現需要填寫密碼直接回車跳過即可

enter passphrase (empty for no passphrase):

enter same passphrase again:

3.檢視生成的ssh-keygen

open ~/.ssh
4.在~/.ssh目錄下新建config檔案(無字尾名,新建時可複製生成的.id_rsa修改一下名稱即可)

//在終端開啟config(也可以雙擊開啟)

open ~/.ssh/config

config檔案格式

#oschina

host oschina  (名稱自定義)

hostname git.oschina.net  (伺服器位址)

user git  (`git`@git.oschina.net 與 這裡`git`名稱是一致的,也可自定義,但不建議修改)

identityfile ~/.ssh/id_rsa_oschina (金鑰儲存路徑)

config檔案

#公司

host company.gitee.com

hostname gitee.com

identityfile ~/.ssh/id_rsa

user company

#個人host me.gitee.com

hostname gitee.com

identityfile ~/.ssh/id_rsa_personal

user me

5.在 github.com裡的配置。

Git Mac通過brew公升級git

homebrew 是乙個軟體包管理器。它的作用就是將軟體包安裝到自己的目錄中,然後將其檔案符號鏈結到 usr local下。確認是否安裝 brew version homebrew 2.2.5 homebrew homebrew core git revision db0b last commit ...

工作電腦配置多個git賬戶

在實際工作中難免會遇到這種情況,我們有個公司的gitlab賬戶,用來提交管理公司的 同時我們也有自己的github賬戶,工作之餘提交一些自己 或者其他資源到github上面。這時我們就需要在自己的電腦上同時配置兩個git賬戶!該怎麼辦呢?下面來為大家演示該如何操作。我以我的電腦為例,我用的是2018...

在一台電腦上使用多個git賬號

步驟一 用ssh keygen命令生成一組新的id rsa new和id rsa new.pub。1 ssh keygen t rsa c new email 平時我們都是直接回車,預設生成id rsa和id rsa.pub。這裡特別需要注意,出現提示輸入檔名的時候要輸入與預設配置不一樣的檔名,比如...