天天看點

mac下的git使用

Git 和 intellij idea使用

  1. IDEA中Git的使用方式

    1.1 在IDEA中配置git的安裝路徑。

    使用的版本是ULTIMATE 2018.3。 配置git的安裝目錄,Mac系統可以使用系統自帶的git即可。點選Test來測試已經配置好:

mac下的git使用

參考連結:Git 和 intellij idea使用

MAC上Git安裝與GitHub基本使用

先安裝

1、通過homebrew安裝Git

1、未安裝homebrew,需安裝homebrew

2、安裝git

brew install git
           

2、通過Xcode安裝

直接從AppStore安裝Xcode,Xcode內建了Git,不過預設沒有安裝,你需要運作Xcode,選擇菜單“Xcode”->“Preferences”,在彈出視窗中找到“Downloads”,選擇“Command Line Tools”,點“Install”就可以完成安裝了。

再配置

建立ssh key、配置git

1、設定username和email(github每次commit都會記錄他們)

git config --global user.name "wenbo"
git config --global user.email "[email protected]"
           

2、通過終端指令建立ssh key

[email protected]是我的郵件名,回車會有以下輸出

Last login: Sat Jan  6 14:12:16 on ttys000
WMBdeMacBook-Pro:~ WENBO$ ssh-keygen -t rsa -C "[email protected]"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/WENBO/.ssh/id_rsa): 
/Users/WENBO/.ssh/id_rsa already exists.
Overwrite (y/n)? n
WMBdeMacBook-Pro:~ WENBO$ 
           

參考連結:

https://www.jianshu.com/p/7edb6b838a2e

将項目從碼雲clone到IntelliJ IDEA

1.在IDEA中配置Git。

選擇菜單“File–>Settings–>Version Control–>Git”,找到Git的安裝目錄下Git.exe執行檔案目錄(記得先安裝好Git,官網下載下傳),如圖所示:

mac下的git使用

然後配置Github上注冊的賬号:填入Github賬戶資訊,點選“Test”按鈕測試連接配接,若成功則會提示如下圖所示成功資訊:

mac下的git使用

2.在IDEA啟動頁面選擇“Check out from Versiom Control”下拉清單,選擇Git,如下圖所示:

mac下的git使用

或者

mac下的git使用