Git Github使用教程

2021-08-20 08:48:44 字數 1483 閱讀 6904

一 配置github

1.註冊github賬戶renle177

2.新建**庫linux-test

以上操作省略...

二 本地操作配置 (linux環境)

1.安裝git及配置環境

yum -y install git

git config --global user.name "renle177"

git config --global user.email "[email protected]"

ssh-keygen -t rsa -c "[email protected]"

2.開啟www.github.com->accountsettings->ssh keys->add ssh key->cp id_rsa.pub內容到此

3.建立本地倉庫,並push到遠端github

mkdir github;cd github

git init                        #

初始化touchreadme                    

git addreadme                  #

提交到git本地倉庫

git commit -m 'first commit'     #

提交檔案,並注釋資訊

git remote add origin [email protected]:renle177/linux-test #

連線遠端github

git push -u origin master        #

更新本地檔案到github

git status                      #

檢視檔案狀態

git remote -v                   #

檢視連線的哪個位址

git clone [email protected]:renle177/linux-test #

轉殖遠端倉庫到本地

假如本地已經存在了這個專案,而倉庫中又有一新的更新,如何把更的合併到本地的專案中?

git fetchorigin                #

取得遠端更新,這裡可以看做是準備要取了

git merge origin/master          #

把更新的內容合併到本地分支/master

faq:

1.在執行

$ git remote addorigin [email protected]:defnngj/hello-world.git

解決辦法:

$ git remote rm origin       #

就不會報錯誤了

2. 在執行

$ git push origin master

解決辦法:

$ git pull origin master

#先把遠端伺服器github上面的檔案拉先來,再push 上去。

Git GitHub使用教程

1.建立github賬戶 2.建立ssh key 開啟git bush,輸入以下命令 ssh keygen t rsa c youremail example.com 注意這個郵件位址和你的github賬戶是要是同乙個郵箱 一路回車,直到顯示建立成功 如果一切順利的話,可以在使用者主目錄裡找到.ss...

Git GITHUB簡單使用

一 概念 git本地倉庫 別人的本地倉庫 通過遠端倉庫實現 通訊更新 二 遠端端 託管 1.註冊github賬號 2.建立遠端倉庫 new repository 輸入倉庫名稱,生成倉庫鏈結 my git 三 本地倉庫建立 1.安裝git msysgit.github.io 配置到系統路徑 2.配置使...

Git GitHub簡單使用

time 2019 2 26 theme git使用說明 2.安裝好git 之後,兩個快捷方式 1.開啟git bash 進入上面檔案目錄下 或者在檔案資源器中進入該目錄,然後右鍵 git bash here 2.輸入 git config global user.name github使用者名稱 ...