git-init

目錄


前置準備 - 安裝 git

Windows

Mac

Linux

// 於終端機貼上以下指令

yum install git-core

// 於終端機貼上以下指令

apt-get install git

git 設定初始化

以下指令會全域地設定你在 git 中顯示的使用者名稱以及 Email,同時也會讓 git 幫輸出的訊息上色。請依序複製並把以下三行指令貼到終端機中。

// 設定使用 git commit/git log 時顯示的使用者名稱

git config --global user.name "你的名字"

// 設定使用 git commit/git log 時顯示的信箱

git config --global user.email "你的信箱"


使用 git init

首先,請先在你喜歡的地方(路徑中不能含有中文名稱)建立一個空的資料夾,命名為 git-test

Mac/Ubuntu 使用者打開終端機後輸入以下指令:

// 切換至家目錄

cd ~

// 建立 git-test 資料夾

mkdir git-test

// 切換至剛建立好的資料夾

cd git-test

// 建立 git repository

git init

Windows 使用者打開終端機後輸入以下指令:

// 切換至根目錄

cd C:

// 建立 git-test 資料夾

mkdir git-test

// 切換至剛建立好的資料夾

cd git-test

// 建立 git repository

git init

完成之後會出現如下畫面,表示 git repository 已經在 git-test 資料夾初始化成功,我們可以開始新增檔案。

查看 git repository

輸入以下指令,可以查看 git-test 資料夾中 git repository 的組成。

// Windows 使用者

dir /a

// Mac/Ubuntu 使用者

ls -a

git repository 具體到底是什麼?

如何取得一個 git repository

小結


下一頁