- git commit 中文編碼亂碼問題
處理:設定 Git 支援 utf-8 編碼
文章連結: http://howiefh.github.io/2014/10/11/git-encoding/
$ git config --global core.quotepath false # 顯示 status 編碼
$ git config --global gui.encoding utf-8 # 圖形介面編碼
$ git config --global i18n.commit.encoding utf-8 # 提交資訊編碼
$ git config --global i18n.logoutputencoding utf-8 # 輸出 log 編碼
$ export LESSCHARSET=utf-8
# 最後一條命令是因為 git log 預設使用 less 分頁,所以需要 bash 對 less 命令進行 utf-8 編碼
- ssh: Could not resolve hostname git: Name or service not known fatal: Could not read from remote repository. 問題
遇到這個問題是我個人github上沒先新建新的版本庫,然後就先在專案上自己手動新增遠端版本庫命令
git remote add origin git@github.com:mrsmallyi/laravel-shop.git
可能是手敲命令問題導致,後面到GitHub上新增新版本庫後,重新複製新增遠端版本可的兩條命令就可以了git remote add origin git@github.com:mrsmallyi/laravel-shop.git git push -u origin master
本作品採用《CC 協議》,轉載必須註明作者和本文連結