20161021W6

解決子模組在對應上的問題

因為之前的2016fallcadp_hw倉儲少複製了一些東西,刪除舊的倉儲後,重新做一個和之前倉儲同名的2016fallcadp_hw倉儲,但是在小組倉儲所連結的子模組,抓不到新倉儲連結,所以我們需要重新加入一次組員倉儲的資料

以為只要再輸入一次指令就可以讓程式抓最新的子模組近來

Y:\tmp\2016fallcadp_bg6>git submodule add -b gh-pages https://github.com/40423214/2016fallcadp_hw.git 40423214
'40423214' already exists in the index

但是程式告訴我們40423214的子模組已經在裡面,所以在試著用git rm 40423214 -f 來刪除存放該子模組資料的資料夾,然後再git submodule add的一次組員倉儲的資料

Y:\tmp\2016fallcadp_bg6>git submodule add -b gh-pages https://github.com/40423214 ...
more ...


20161007W4

設定使用者資料,讓可攜程式更方便

用2016fallcadp_bg6的名稱,建立小組倉儲

more ...

20160930W3

複製網誌和簡報的設定檔到2016fallcadp_hw的倉儲

更改2016fallcadp_hw的README.md檔案

簡報: https://40423214.github.io/2016fallcadp_hw
網址: https://40423214.github.io/2016fallcadp_hw/blog/

解決近端設定代理主機的問題

每次上課須執行以下指令

git config --global http.proxy http://proxy.mde.tw:3128
git config --global https.proxy http://proxy.mde.tw:3128

輸入完之後出現了這個問題

warning: http.proxy has multiple values
error: cannot overwrite multiple values ...
more ...

20160923W2

建立40423214.github.io名稱的倉儲

把分支的預設值改為gh-pages

more ...

20160916W1

利用中秋連假複習之前學過的指令

切換到2016fallcadp_hw的分支

cd 分支名稱
(例如:cd 2016fallcadp_hw)

回到上一個分支

cd ..

會新建一個40423214的資料夾,並把遠端資料存在裡面

git clone 倉儲網址 分支名稱
(例如:git clone https://github.com/40423214/2016fallcadp_hw.git 40423216)

檢查分支

git branch

建立一個gh-pages名稱的分支

git branch 分支名稱
(例如:git branch gh-pages)

切換到指定的gh-pages分支

git checkout 分支名稱
(例如:git checkout gh-pages)
git add -A
git commit -m ...
more ...