git push 到 github & Github Pages 筆記

git push 到 github & Github Pages 筆記

會用到的 Git 常用指令

將檔案加入索引

1
git add .

將索引檔案提交

1
git commit -m "xxx"

更新遠端數據庫

1
git push origin master

下載遠端數據庫

1
git clone 數據庫網址

流程

Github 開新數據庫

先到 github 新增 repository

repository

將數據庫 Git clone 下來到本地數據庫

先在桌面開一個資料夾,打開 git bash 將 github 的數據庫 clone 下來。

git clone

1
2
cd 資料夾
git clone 網址

進入 clone 下來的資料夾

1
cd 剛剛 clone 下來的資料夾

新增檔案

在 clone 下來的資料夾新增檔案。

加入索引

1
git add .

將索引檔案提交

1
git commit -m "XXX"

XXX 那邊可以隨意打,版本號/更新內容/修改內容…

建立分支

1
git branch -M main

推上 github

1
git push -u origin main

範例 Demo

範例:新增 index.html ,然後 commit 提交( 第一次 commit )

git

之後又在 index.html 中新增兩行 code ,然後 commit 提交( 第二次 commit )

git

紅色圈起來的地方就是輸入 XXX 的內容

右上角會顯示 commit 次數 (commit 次數包含 Initial commit)

git commit

點進去後會顯示 ↓

git commit

按紅色圈起來的按鈕就可以看見推上 github 的修改歷史與新增內容 ↓

git commit


Github Pages

免費用來做靜態網站的好工具,用來架自己的部落格非常方便。
簡單幾個指令就可以生成靜態網站,免費的雄讚!!!

點選 settings ↓

Github Pages

往下滑,找到 Github Pages 設定,勾選 main ,然後儲存 ↓
Github Pages

畫面更新後,回到 Github Pages 設定位置,上方會顯示 Github Pages 連結

Github Pages

Github Pages 網頁產生
https://kaychen1994.github.io/Git-Demo/