1. 程式人生 > >git 常見錯誤總結

git 常見錯誤總結

    如果輸入$

git remote add origin https://github.com/ddangPengf520/YinlianApliy.git

    提示出錯資訊:fatal: remote origin already exists.

    解決辦法如下:

    1、先輸入$ git remote rm origin

    2、再輸入$ git remote add origin https://github.com/ddangPengf520/YinlianApliy.git 就不會報錯了!

    3、如果輸入$ git remote rm origin還是報錯的話,error: Could not remove config section 'remote.origin'. 我們需要修改gitconfig檔案的內容

    4、找到你的github的安裝路徑,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc

    5、找到一個名為gitconfig的檔案,開啟它把裡面的[remote "origin"]那一行刪掉就好了!

    如果輸入$ ssh -T[email protected]
    出現錯誤提示:Permission denied (publickey).因為新生成的key不能加入ssh就會導致連線不上github。

    解決辦法如下:

    1、先輸入$ ssh-agent,再輸入$ ssh-add ~/.ssh/id_key,這樣就可以了。

    2、如果還是不行的話,輸入ssh-add ~/.ssh/id_key 命令後出現報錯Could not open a connection to your authentication agent.解決方法是key用Git Gui的ssh工具生成,這樣生成的時候key就直接儲存在ssh中了,不需要再ssh-add命令加入了,其它的user,token等配置都用命令列來做。

    3、最好檢查一下在你複製id_rsa.pub檔案的內容時有沒有產生多餘的空格或空行,有些編輯器會幫你新增這些的。

    如果輸入$ git push origin master

    提示出錯資訊:error:failed to push som refs to .......

    解決辦法如下:

    1、先輸入$ git pull origin master //先把遠端伺服器github上面的檔案拉下來

    2、再輸入$ git push origin master

    3、如果出現報錯 fatal: Couldn't find remote ref master或者fatal: 'origin' does not appear to be a git repository以及fatal: Could not read from remote repository.

    使用git在本地建立一個專案的過程

    $ makdir ~/hello-world    //建立一個專案hello-world
    $ cd ~/hello-world       //開啟這個專案
    $ git init             //初始化
    $ touch README
    $ git add README        //更新README檔案
    $ git commit -m 'first commit'     //提交更新,並註釋資訊“first commit”
    $ git remote add origin [email protected]:defnngj/hello-world.git     //連線遠端github專案 
    $ git push -u origin master     //將本地專案更新到github專案上去

    gitconfig配置檔案

         Git有一個工具被稱為git config,它允許你獲得和設定配置變數;這些變數可以控制Git的外觀和操作的各個方面。這些變數可以被儲存在三個不同的位置:
         1./etc/gitconfig 檔案:包含了適用於系統所有使用者和所有庫的值。如果你傳遞引數選項’--system’ 給 git config,它將明確的讀和寫這個檔案。
         2.~/.gitconfig 檔案 :具體到你的使用者。你可以通過傳遞--global 選項使Git 讀或寫這個特定的檔案。
         3.位於git目錄的config檔案 (也就是 .git/config) :無論你當前在用的庫是什麼,特定指向該單一的庫。每個級別重寫前一個級別的值。因此,在.git/config中的值覆蓋了在/etc/gitconfig中的同一個值。
        在Windows系統中,Git在$HOME目錄中查詢.gitconfig檔案(對大多數人來說,位於C:\Documents and Settings\$USER下)。它也會查詢/etc/gitconfig,儘管它是相對於Msys 根目錄的。這可能是你在Windows中執行安裝程式時決定安裝Git的任何地方。

        配置相關資訊:

        2.1 當你安裝Git後首先要做的事情是設定你的使用者名稱稱和e-mail地址。這是非常重要的,因為每次Git提交都會使用該資訊。它被永遠的嵌入到了你的提交中:

  $ git config --global user.name "John Doe"

       2.2    你的編輯器(Your Editor)

  現在,你的標識已經設定,你可以配置你的預設文字編輯器,Git在需要你輸入一些訊息時會使用該文字編輯器。預設情況下,Git使用你的系統的預設編輯器,這通常可能是vi或者 vim。如果你想使用一個不同的文字編輯器,例如Emacs,你可以做如下操作:

  $ git config --global core.editor emacs

      2.3 檢查你的設定(Checking Your Settings)

  如果你想檢查你的設定,你可以使用 git config --list命令來列出Git可以在該處找到的所有的設定:

  $ git config --list

      你也可以檢視Git認為的一個特定的關鍵字目前的值,使用如下命令 git config {key}:

  $ git config user.name

      2.4 獲取幫助(Getting help)

  如果當你在使用Git時需要幫助,有三種方法可以獲得任何git命令的手冊頁(manpage)幫助資訊:

  $ git help <verb>

  $ git <verb> --help

  $ man git-<verb>

  例如,你可以執行如下命令獲取對config命令的手冊頁幫助:

  $ git help config


相關推薦

git 常見錯誤總結

    如果輸入$ git remote add origin https://github.com/ddangPengf520/YinlianApliy.git     提示出錯資訊:fatal: remote origin already exists.     

Hbase 常見錯誤總結——摘自忘了

cti status 不同步 fat reducer led cep issue html 一、執行$ hbase hbck 命令時,出現以下提示: Invalid maximum heap size: -Xmx4096m The specified size excee

Rreact Native 常見錯誤總結

指正 自己 努力 mod 目錄 .net window exception ati 1.invariant violation:expected a component class,got[object object] 創建自定義組件首字母要大寫,否則會報錯.

windows 安裝Scrapy常見錯誤總結

window scrapy 寫這篇文章,不僅是為了匯總安裝Scrapy的常見安裝問題,還自己獨立解決問題的能力。從一開始報VS C++版本的錯誤,到後來在CentOS運行pip install lxml很慢(CentOS 7 是一臺虛擬機)。這是一種常見的安裝lxml的異常情況:電腦環境:win10 64位

SpringMVC接受JSON參數詳解及常見錯誤總結我改

pen 接口 var token 練手 一個 lips users 是不是 SpringMVC接受JSON參數詳解及常見錯誤總結 最近一段時間不想使用Session了,想感受一下Token這樣比較安全,穩健的方式,順便寫一個統一的接口給瀏覽器還有APP。所以把一個練手項目

[轉]C語言常見錯誤總結1

process log item 它的 too 問題 程序 副本 proc 指針與數組的對比c程序中,指針和數組在不少地方可以相互替換著用,讓人產生一種錯覺,以為兩者是等價的 數組要麽在靜態存儲區被創建(如全局數組),要麽在棧上被創建。數組名對應著(而不是指向)一塊內存,其

Teamcanter服務器登錄常見錯誤總結

常見錯誤 分割 清理 開始 停止 .com 錯誤 常見錯誤總結 pom 問題一:POM has not started 以上三個問題,都是TC有關的服務掉線導致的,我們只需要清理下緩存即可. 解決辦法來了............... ----------------

docker 常見錯誤總結

term issue apply lis correct device ner headers variables docker common error Non-existing image of running container drm() { docker rm $

MySQL常見錯誤總結

解決方法 margin group 更新 mys 條件 left for ins 1)DELETE語句不能直接使用表的別名   執行insert,update,delete語句時,我們為了方便常給表加上別名,這在Oracle下完全沒有問題,但是MySQL的delete語句後

Hibernate開發中常見錯誤總結

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

ansible 2.7.1 常見錯誤總結

1.RequestsDependencyWarning (refer to http://blog.51cto.com/mjunetwslinux/2177727?source=dra) python庫中urllib3 (1.21.1) or chardet (2.2.1) 的版本不相

Linux之Ubuntu常見錯誤總結

N1: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/

Git 常見錯誤處理

1    ! [remote rejected] HEAD -> refs/for/pie_sku_app_dev (change 23503 closed)是由於在合入基於某次commit 修改後的patch時,該commit 在伺服器端並沒有合入,導致git am

python常見錯誤總結,持續更新

1、錯誤:NameError: name 'raw_input' is not defined 原因:原因出在raw_input ,python3.0版本後用input替換了raw_input 2、 在Python 3.x 裡面,iteritems()方法已經廢除了。在3.x裡用 ite

【小結】常見錯誤總結

暴力 使用 否則 合並 修改 bsp 序列 遞歸 -s 1.斜率優化dp中,若原數據太大,則不要將斜率交叉相乘(可能爆long long),而應使用long double比較slope 2.不帶修改的前綴主席樹:o=++gt; 帶修改的BIT套主席樹:if(!o)o=++g

hive2.*安裝部署常見錯誤總結(連載)

異常一、java.lang.RuntimeException Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: Unable to instantiate o

git常見錯誤git push rejected的原因。

之前對git的使用很不熟練,在前幾天重新學習了之後,測試時提交報了錯: ![rejected] master->master(fetch first) error:failed to push some refs to 'https://github.com/xxx

Django常見錯誤總結

1 ImportError: No module named 'MySQLdb' 解決方法: 1. 安裝pymysql模組 2. 在app的__init__.py檔案中寫入以下內容 import pymysql pymysql.install_as_MySQLdb()

HTML5-indexedDB使用常見錯誤總結

indexedDB使用過程中常常會出現以下錯誤: Failed to execute ‘createObjectStore’ on ‘IDBDatabase’: The database is not running a version change transaction. 這是由於你在suc

cocoapods:常見錯誤總結

錯誤1 無論是執行pod install還是pod update都卡在了Analyzing dependencies 或者 Updating local specs repositories不動 解決方案: 原因在於當執行以上兩個命令的時候會升級Coc