Visual Studio Code 常用快速鍵

2017年11月19日 星期日

Visual Studio Code 快速鍵
Shift+alt+f=foramt文件格式
Ctrl+d+d=快速選上相同字詞
Alt+滑鼠左鍵=可以連續選中不同位置,同時一起變更
Ctrl+b=快速把左邊視窗打開或收起來
Ctrl+p=快速跳到某個檔案
Shift+ctrl+o=快速跳出屬性和方法
Alt+前或後=類似vs裡面的往前或往後的箭頭
Alt+j=快速跳出intellisense,這是有吃我設定的才會生效,因為我有改掉快速鍵
F1=跳出快速選單,很多外掛相關字會在這裡面
Ctrl+alt+c=快速跳出command line
Ctrl+k+o=快速打開目前目錄的資料夾
Alt+上或下=可以快速把此行搬到上一行或下一行
SC快速鍵,加入框架
Ctrl + ENter快速換行


常用Visual Studio 快速鍵
Ctrl + M + Spec : 快速排版
Alt + 上/下:移動換行
Ctrl + Shift + U : 轉大寫
Ctrl + [ + s :快速跳至檔案

Read more...

git Http 501 錯誤處理

2017年11月3日 星期五

新開一個bratch要push時發生錯誤,訊息如下:HTTP 501 curl 22 Recv failure: Connection was aborted


google一下發現原來Post有限制1MB的限制
文章如下:
Maximum size in bytes of the buffer used by smart HTTP transports when POSTing data to the remote system. For requests larger than this buffer size, HTTP/1.1 and Transfer-Encoding: chunked is used to avoid creating a massive pack file locally. Default is 1 MiB, which is sufficient for most requests.


文章如下:https://www.kernel.org/pub/software/scm/git/docs/git-config.html


解法如下: 增加postbuffer空間即可,可用以下語法增加
git config --global http.postBuffer 157286400
參考網址:
https://confluence.atlassian.com/stashkb/git-push-fails-fatal-the-remote-end-hung-up-unexpectedly-282988530.html

Read more...