星期四, 2月 27, 2014

使用git push 到遠端主機遇到的問題與解法

通常學一個東西還沒有感受到它強大的威力往往就會先感受到它的不便,偏偏會有一堆人來跟你行銷說習慣了就很好用之類的...

應同事的邀請,開始使用git。

在我 push 到遠端主機(gitlab)時,一直跟我說錯誤。

$ git push
Counting objects: 9292, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2136/2136), done.
error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
Writing objects: 100% (8222/8222), 1.27 MiB | 837 KiB/s, done.
Total 8222 (delta 6060), reused 8181 (delta 6033)
fatal: The remote end hung up unexpectedly
Everything up-to-date


後來才知道要把上傳時的buffer調大,才有辦法成功。

調整postBuffer至五百多MB

git config http.postBuffer 524288000

供各位參考。

星期二, 2月 25, 2014

Linux 上 Command Line 存取MySQL 不出現亂碼的方法

平常在存取DBMS使用都是GUI介面,但是碰到那種只能用Command Line 存取DBMS的情況,也不得不乖乖的一個指令一個指令key in。只是用Command Line 選出來的字大多都是亂碼,明明就是用utf-8建立的database,怎麼資料選出來還是亂碼 ?

答案就是 : set names 'utf8';


下了這行指令後,說也奇怪,選出來的中文資料就正常了。

分享給各位。