2019 MDE CD2019 40623118

Week5 << Previous Next >> Week7

Week6

發現問題與解決辦法

一、

不知道是不是因為上周更新cmd版本的問題所導致的

Q : 無法clone與add版本

Y:\tmp>git clone https://github.com/mdecadp2018/site-40623118 test

Cloning into 'test'... fatal: unable to access 'https://github.com/mdecadp2018/site-40623118/': error setting certificate verify locations: CAfile: y:/git/mingw64/bin/curl-ca-bundle.crt CApath: none

A : Y:\tmp>git config --global http.sslverify "false"(僅需此行指令,下方皆為處理程序)

Y:\tmp>git clone https://github.com/mdecadp2018/site-40623118 test

Cloning into 'test'... remote: Enumerating objects: 857, done. remote: Counting objects: 100% (857/857), done.

remote: Compressing objects: 100% (469/469), done.

remote: Total 857 (delta 309), reused 832 (delta 290), pack-reused 0 Receiving objects: 100% (857/857), 3.68 MiB | 380.00 KiB/s, done.

Resolving deltas: 100% (309/309), done. Checking out files: 100% (614/614), done.

二、

Q : 在LEO編輯後 遠端與近端所更新的版本不同

A : 在上面的問題解決之後 重新clone一個(名:test) 與之前的版本(名:site)有所衝突 LEO近端所顯示的是site的版本 而遠端所顯示的是test的版本


Week5 << Previous Next >> Week7