【 DevOps 】透過指令模式進行 Clone 與 Push 操作 - Windows
內容
- 學習目標
- 前置準備作業
- 使用軟體
- Windows 指令
- 建立 Repository 與 Push 的使用方式
學習目標
- 在 GitHub 上建立 Repository
- 透過指令模式將 GitHub 上 Repository Clone 到本地端的電腦
- 透過指令模式將本地端電腦的 Repository Push 到 GitHub 相對應的 Repository
前置準備作業
- 一台可上網的 Windwos 電腦
- 已申請 GitHub 帳號
- 在電腦中安裝 Git
- Windwos
- Git 官方網站下載 Windows 版本
- 設定 Git 使用者名稱和信箱
- git config --global user.name "你的 name"
- git config --global user.email "你的 email"
- 查看設定
- git config --list
- Windwos
使用軟體
-
Git
-
Windwos 使用
命令提示字元
-
開啟方式
- 點選放大鏡搜尋
命令提示字元
- 點選放大鏡搜尋
-
Windows 指令
指令 | 功用 | 使用方式 | 例子 |
---|---|---|---|
mkdir | 建立資料夾 | mkdir 資料夾名稱 ㊟ 在目前的路徑下建立此資料夾 |
mkdir github |
cd | 到特定資料夾中 | cd 資料夾名稱 | cd github |
dir | 查看指定資料夾中有那些東西 | dir 資料夾名稱 | dir github |
cls | 清除畫面 | cls | cls |
建立 Repository 與 Push 的使用方式
Step 1. 透過瀏覽器開啟 GitHub 並登入
- 透過瀏覽器開啟 GitHub,GitHub 網址 https://github.com/
- 1.2 登入 GitHub
Step 2. 建立 Repository
- 點選上方的
Repositories
頁籤
- 點選右方的
New
按鈕
- 建立 Repository name 與 README
- ① 在
Repository name
欄位輸入想要的 Repository 名稱- ㊟ 名稱不能跟其它的 Repository 名稱相同
- ㊟ 本例使用
Project
當範例
- ② 勾選
README
欄位- ㊟ 為了之後撰寫此 Repository 的描述
- ③ 點擊
Create repository
按鈕
- ① 在
Step 3. 建立完成 Repository 畫面
Step 4. Clone 剛建立的 Repository 到本地端的電腦
-
透過【 Visual Studio Code 】開啟本地端電腦所要存放 Repository 的資料夾
- ① 在本地端電腦建立所要存放 Repository 的資料夾並透過【 Visual Studio Code 】開啟
- ㊟ 本範例在本地端電腦的【 D 槽 】建立【 github 】資料夾以存放 Repository
- ① 在本地端電腦建立所要存放 Repository 的資料夾並透過【 Visual Studio Code 】開啟
-
切換路徑到【 D 槽 】
-
使用指令
- cd /d D:
-
-
在【 D 槽 】建立【 github 】資料夾
-
使用指令
-
mkdir github
- ㊟ 指令說明請參閱 Windows 指令
-
-
-
切換路徑到【 github 】資料夾
-
使用指令
-
cd github
- ㊟ 指令說明請參閱 [Windows 指令]
-
-
-
透過【 Visual Studio Code 】開啟【 github 】資料夾
-
使用指令
- code .
-
- 開啟 Visual Studio Code 畫面
☆ 將的 Github 上的 Repository Clone 到步驟【 4.1 】所建立的資料夾中
① 到 Github 剛才所建立的 Repository 中點選右邊的【 Clone or download 】按鈕
② 點選右邊的複製按鈕
③ 回到步驟【 4.1 】的【 Visual Studio Code 】畫面中並開啟【 終端機 】
㊟ 請按快速鍵開啟
Windows:【 Ctrl 】+【 ` 】
- 開啟【 終端機 】後的畫面
④ 輸入以下指令
git clone 步驟【 4.2 】之 ② 所複製的路徑
例: 本範例為 git clone https://github.com/ArcherHuang/Project.git
- 執行指令
- 指令執行完成
- 本地端資料夾中已存在 Github 上的 Repository 相關檔案
Step 5. 將本地端資料夾中檔案 Push 到 Github 上的相對應 Repository 中
☆ 5.1 在本地端資料夾中放置一些檔案如下圖所示
☆ 5.2 切換路徑到本地端的 Repository 中
㊟ 本範例為 Project 資料夾,故指令如下
cd Project
☆ 5.3 輸入以下指令
① git add .
㊟ 把目前當下這個目錄以及它的子目錄、子子目錄、子子子目錄 ...... 裡的異動全部加到暫存區
☆ 5.4 ② git commit -m "init commit"
㊟ -m "init commit" 是指要要說明「在這次的 Commit 做了什麼事」,只要使用簡單、清楚的文字說明就好,
中、英文都可, 目的是為了讓別人或下個星期的自己看的懂 ......
- 執行指令
- 指令執行完成
☆ 5.5 ③ git push
㊟ 將檔案 push 到 Github 上的相對應 Repository
- 執行指令
- 指令執行完成
Step 6. GitHub 上相對應的 Repository