1. 程式人生 > >Git 問題小結

Git 問題小結

n-2 解決方法 file 密碼 可能 install doc word path

Git Status 中文亂碼解決

  現象:  

技術分享圖片

  解決辦法:打開Git Bash,執行git config --global core.quotepath false

linux init git project

  • GitHub上創建一個repositories項目,比如 :https://github.com/NightAlexLy/doc.git
  • 在自已的項目下面執行。 git init
  • 將資源文件添加到git。git add .
  • 提交 git commit -m "log message(自己的提交日誌)”
  • git remote add origin https://github.com/NightAlexLy/doc.git,在github上面添加origin
  • git push -u origin master ,將代碼同步至github。
  • 上面一步報錯可能需要執行git pull --rebase origin

git提交每次都輸入密碼

查看git origin的地址:  git remote -v

 git remote rm origin
 git remote add origin https://username:[email protected]/username/test.git
 git push origin master

git 錯誤: Unable to find remote helper for ‘https’解決方法

 vi /etc/profile
添加"export PATH=$PATH:/usr/libexec/git-core"

source /etc/profile

或者是安裝問題

make prefix=/usr all doc info ;# as yourself
make prefix=/usr install install-doc install-html install-info ;# as root

git 回滾遠程倉庫提交

  先通過  git log  查找要回退的 節點(commit_hash)

git reset --hard commit_hash

git push origin HEAD --force

Git 問題小結