git push 到 github & Github Pages 筆記

會用到的 Git 常用指令

將檔案加入索引

1
git add .

將索引檔案提交

1
git commit -m "xxx"

更新遠端數據庫

1
git push origin master

下載遠端數據庫

1
git clone 數據庫網址

gitignore 忽略檔案

gitignore

如果有些檔案不想進入版本控制,就可以使用 gitignore 來忽略檔案。



新增.gitignore 檔案

.gitignore 檔案中可以寫入不想進入版本控制的檔案。

範例: 在.gitignore 檔案中寫進 index2.htmlignore.css,這兩個檔案就不會進入版本控制,也不會被 push 到 github 上。