Linux下Git的初步使用指南

2021-07-28 21:19:59 字數 1669 閱讀 5225

1 linux下git和github環境的搭建

第一步: 安裝git,使用命令 「sudo apt-get install git」

第二步: 到github上建立github帳號

第三步: 生成ssh key,使用命令 「ssh-keygen -t rsa -c "[email protected]"」,your_email是你的email

第四步: 回到github,進入account settings,左邊選擇ssh keys,add ssh key,title隨便填,貼上key。key就是

~/.ssh/id_rsa.pub內容。

第五步: 測試ssh key是否成功,使用命令「ssh -t [email protected]」,如果出現you』ve successfully authenticated, but github does not provide shell access 。這就表示已成功連上github。

第六步: 配置git的配置檔案,username和email

git config --global user.name "your name" //配置使用者名稱

git config --global user.email "your email" //配置email

2 利用git從本地上傳到github

第一步: 進入要所要上傳檔案的目錄輸入命令 「git init」

第二步: 建立乙個本地倉庫origin,使用命令 「git remote add origin [email protected]:yourname/yourrepo.git」

youname是你的github的使用者名稱,yourrepo是你要上傳到github的倉庫,這是你再github上新增的倉庫。

第三步: 比如你要新增乙個檔案***到本地倉庫,使用命令 「git add ***」,可以使用「git add .」自動判斷新增哪些檔案

然後把這個新增提交到本地的倉庫,使用命令 」git commit -m 」說明這次的提交「 「

最後把本地倉庫origin提交到遠端的github倉庫,使用命令 」git push origin master「

3 從github轉殖專案到本地

第一步: 到github的某個倉庫,然後複製右邊的有個「https clone url」

第二步: 回到要存放的目錄下,使用命令 "git clone ",紅色的url只是乙個例子

第三步: 如果本地的版本不是最新的,可以使用命令 「git fetch origin」,origin是本地倉庫

第四步: 把更新的內容合併到本地分支,可以使用命令 「git merge origin/master」

如果你不想手動去合併,那麼你可以使用: git pull 《本地倉庫》 master // 這個命令可以拉去最新版本並自動合併

4 github的分支管理

建立1 建立乙個本地分支: git branch 《新分支名字》

2 將本地分支同步到github上面: git push 《本地倉庫名》 《新分支名》

3 切換到新建立的分支: git checkout 《新分支名》

5 檢視當前倉庫有幾個分支: git branch

刪除1 從本地刪除乙個分支: git branch -d 《分支名稱》

2 同步到github上面刪除這個分支: git push 《本地倉庫名》 :

5 常見錯誤

GIT的初步使用

1,安裝git工具,在希望的地方建立乙個資料夾,右鍵git bash 2,將git上庫的位址複製下來 在git bash中git clone url 3,git add 檔案 一種是單個檔案 直接git add 檔案,一種是git 資料夾,git add 或者git add 4,git commit...

Git的初步使用

新建乙個資料夾例如 樓主在f盤建立乙個乙個名為demo的資料夾,進入資料夾右擊。選擇git bash here.進入如下圖 輸入命令 ll la 可以檢視到多了乙個.git 的檔案 desktop 4mj1hg4 mingw64 f demo master ll la total 16 drwxr ...

GIT初步使用

今天一直在想,怎麼可以在eclipse上把 託管到像github或codegoogle上,今天試了一下午,都沒有成功 不知道是網路的原因還是什麼的,悲催的 無奈只能用命令列使用。以下是 基本步驟 git smartgt 2.在github註冊,new repository 完成基本的操作 3.建立金...