Linux下git的安裝及簡單使用

2021-07-16 19:49:56 字數 2170 閱讀 3036

[html]view plain

copy

[root@localhost /]# yum install git     

[root@localhost /]# git config --global user.name "your name"  

[root@localhost /]# git config --global user.email "[email protected]"  

[root@localhost /]# mkdir uter     

[root@localhost /]# cd uter  

[root@localhost uter]# git init    

初始化空的 git 版本庫於 /uter/.git/  

[root@localhost uter]# ls -ah     

.  ..  .git  

//前面幾步操作我們已經成功安裝了git並建立了乙個版本庫,如果需要把這個版本庫取消那麼直接把(.git)這個檔案刪除就可以了   

[root@localhost uter]# rm -rf .git  

//現在我們試試把檔案上傳到版本庫  

[root@localhost uter]# vim git.txt   

[root@localhost uter]# git add git.txt    

[root@localhost uter]# git status  

# 位於分支 master  

#  # 初始提交  

#  # 要提交的變更:  

#   (使用 "git rm --cached <

file

>..." 撤出暫存區)  

#  #   新檔案:    git.txt  

#  [root@localhost uter]# git commit -m "linux test git"  

[master(根提交) c87e19d] linux test git  

1 file changed, 1 insertion(+)  

create mode 100644 git.txt  

[root@localhost uter]# git log  //檢視版本資訊  

//在這裡我直接對接我github上的遠端倉庫[已經建好的]  

[root@localhost uter]#  git remote add origin    

[root@localhost uter]# git merge origin/master  

[root@localhost uter]# git push -u origin master  

接下來我們回到瀏覽器返回 github 建立的倉庫重新整理一下,就可以看到檔案已上傳到github上:  

檢視當前的遠端庫:  

[root@localhost uter]# git remote   

[root@localhost uter]# git remote -v // -v 引數,可以看到每個別名的實際鏈結位址。  

提取遠端倉庫:  

[root@localhost uter]# git fetch    

//該命令執行完後需要執行git merge 遠端分支到你所在的分支。  

2、從遠端倉庫提取資料並嘗試合併到當前分支  

[root@localhost uter]# git pull    

//該命令就是在執行 git fetch 之後緊接著執行 git merge 遠端分支到你所在的任意分支。  

假設你配置好了乙個遠端倉庫,並且你想要提取更新的資料,你可以首先執行  

git fetch [alias] 告訴 git 去獲取它有你沒有的資料,然後你可以執行  

git merge [alias]/[branch] 以將伺服器上的任何更新(假設有人這時候推送到伺服器了)合併到你的當前分支。  

[root@localhost uter]# git fetch origin   

[root@localhost uter]# git merge origin/master (遠端庫名/分支名)  

推送到遠端倉庫:  

[root@localhost uter] git push origin  master   

linux下的git安裝及配置

一.yum安裝方式 1.安裝 yum install curl devel expat devel gettext devel openssl devel zlib devel yum y install git core git version git version 1.7.1 2.配置 如果用...

linux下的git安裝及配置

一.yum安裝方式 1.安裝 yum install curl devel expat devel gettext devel openssl devel zlib devel yum y install git core git version git version 1.7.1 2.配置 如果用...

git安裝 linux下的安裝

一般linux自帶git版本很舊,會有一定問題,可以先解除安裝系統自帶git yum remove gitwget tar zxvf v2.2.1.tar.gz cd git 2.2.1 make configure configure prefix usr local git with iconv...