20161028W7

使用Trace Point計算路徑

解決子模組設定的問題

把以下多餘的子模組刪掉

[submodule "2016fallcadp_hw"]
    path = 2016fallcadp_hw
    url = https://github.com/40423226/2016fallcadp_hw.git
    branch = gh-pages

更改後為以下的內容

[submodule "40423206"]
    path = 40423206
    url = https://github.com/40423206/2016fallcadp_hw.git
    branch = gh-pages
[submodule "40423224"]
    path = 40423224
    url = https://github.com/40423224/2016fallcadp_hw.git
    branch = gh-pages
[submodule "40423226"]
    path = 40423226
    url = https ...

more ...

20161021W6

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

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

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

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

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

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


20161007W4

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

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

more ...

20160930W3

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

更改2016fallcadp_hw的README.md檔案

簡報: https://40423216.github.io/2016fallcadp_hw
網址: https://40423216.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

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

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

more ...