Git 不是内部或外部命令 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 3月 26, 2016 只需要設定Git 環境變數就可以解決 設定如下Git 安裝路徑 : D:\Git\bin D:\Git\Git\mingw64\libexec\git-core (重點指定bin、git-core路徑) Step1: 找到環境變數 Step2: Path 編輯 Step3: 變數值加入 D:\Git\bin;D:\Git\mingw64\libexec\git-core Reference: https://git-scm.com/book/en/v2 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 留言
Google Blogger 程式碼底色改變 3月 19, 2016 套用方式: 主題=>自訂=>選擇進階=>新增CSS=>填入CSS 程式碼=>套用至網誌 嵌入程式碼: CODE { display: block; /* fixes a strange ie margin bug */ font-family: Courier New; font-size: 8pt; overflow:auto; background: #f0f0f0 url(http://klcintw.images.googlepages.com/Code_BG.gif) left top repeat-y; border: 1px solid #ccc; padding: 10px 10px 10px 21px; max-height:200px; line-height: 1.2em; } (1.)那就開始動手作,首先選擇主題後點擊自訂 (2.)選擇進階=>新增CSS=>填入CSS 程式碼=>套用至網誌 (3.)do it 請到一篇文章中,選擇html使用CODE Tage將程式碼包覆, !!記得請大寫!!! 撰寫完畢後按儲存~~請按預覽~~ 這樣就完成拉~~ Reference : http://rocking5566.blogspot.tw/2013/04/google-blog.html http://chiumog.blogspot.tw/2015/02/blog-code-block.html 圖片破版 http://www.wfublog.com/2015/05/blogger-picasa-image-blurry-disappear-overflow.html 閱讀完整內容
GIT 備忘錄 3月 08, 2016 初次使用git必須設定 git config --global user.name "bozhen" git config --global user.email "bozhen@gmail.com" 選擇哪個目錄做 repository git init . 新增檔案 git add . 確定提交 git commit -m "hello" 推到雲端git git push <remote> <branch> 從雲端合併進本地 git pull == git fetch <remote name> git merge git pull <short name> <branch> 把別人雲端git 資料載下來 git clone <url> 新增遠端repository 顯示已存在repository git remote -v short name : 自行命名 git remote add <short name> <url> git diff --staged remove stage file git reset HEAD -- 刪除檔案 git rm '*.txt' 刪除XXXX分支 git branch -d xxxx 練習網站 https://try.github.io/levels/1/challenges/1 Reference : https://git-scm.com/book/en/v2 http://blog.miniasp.com/post/2013/08/18/Learning-Git-Part-1-Installation-Options-Tool-Usage-on-Local.aspx https://git-scm.com/book/zh-tw/v1/Git-%E5%9F%BA%E7%A4%8E-%E8%88%87%E9%81%A0%E7%AB%AF%E5%8D%... 閱讀完整內容
留言
張貼留言