Git管理本地代碼(一)【轉】

 

目錄(?)[+]git

 

安裝Git

 

[plain]  view plain  copy
 
  1. $sudo apt-get install git  
  2. $sudo apt-get install git-core  
更新Git

 

 

 

 

[plain]  view plain  copy
 
  1. $git clone git://git.kernel.org/pub/scm/git/git.git  
安裝好git後在終端輸入git 命令會顯示git命令提示,證實git已經安裝成功。

 

 

 

初始化代碼倉庫

 

[plain]  view plain  copy
 
  1. $mkdir android4.2  
  2. $cd android4.2  
  3. $git init  

 

 

 

git init 和git --bare init 的具體區別參考:http://blog.haohtml.com/archives/12265 web

 

提示: Initialized empty Git repository in /data/Downloads/Git/android4.2/.git/證實git倉庫(repository)建立成功

配置config文件(全局)

 

[plain]  view plain  copy
 
  1. $cd .git  
  2. $vim config  
該配置文件的原始內容爲:

 

 

 

 

[plain]  view plain  copy
 
  1. [core]  
  2.         repositoryformatversion = 0  
  3.         filemode = true  
  4.         bare = false  
  5.         logallrefupdates = true  
在該配置文件中加入如下內容:

 

 

 

 

[plain]  view plain  copy
 
  1. [receive]  
  2. denyCurrentBranch = ignore  
加入該配置的目的是:容許使用git push 提交代碼到服務器,不然會出現如下異常:

 

 

 

 

remote: error: refusing to update checked out branch: refs/heads/mastervim

remote: error: By default, updating the current branch in a non-bare repository服務器

remote: error: is denied, because it will make the index and work tree inconsistentless

remote: error: with what you pushed, and will require 'git reset --hard' to matchui

remote: error: the work tree to HEAD.this

remote: error:spa

remote: error: You can set 'receive.denyCurrentBranch' configuration variable to

remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into

remote: error: its current branch; however, this is not recommended unless you

remote: error: arranged to update its work tree to match what you pushed in some

remote: error: other way.

remote: error:

remote: error: To squelch this message and still keep the default behaviour, set

remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.

To git@192.168.1.X:/var/git.server/.../web

! [remote rejected] master -> master (branch is currently checked out)

error: failed to push some refs to 'git@192.168.1.X:/var/git.server/.../web'

在代碼倉庫建立一個說明文檔(該文檔能夠隨便建立)

 

[plain]  view plain  copy
 
  1. $touch spec.txt  
備註:若是初始的代碼倉庫爲空,git push origin master提交代碼的時候會出現如下異常:

 

 

 

error: src refspec master does not match any.
error: failed to push some refs to '/data/Downloads/Git/android4.2/.git
所以咱們須要在初始化代碼倉庫以後,在倉庫中建立一個文件:

實例:

 

[plain]  view plain  copy
 
  1. $touch spec.txt  
  2. $git add spec.txt  
  3. $git commit-a -m "first commit"  
  4. $git push  
此時,基本的代碼倉庫已經建立完成。本地代碼倉庫的Git庫爲:/data/Downloads/Git/android4.2/.git

 

 

 

同步代碼

建立myprojects目錄,同步代碼

 

[plain]  view plain  copy
 
  1. $mkdir Download/myprojects  
  2. $git clone /data/Downloads/Git/android4.2/.git  
修改文件
[plain]  view plain  copy
 
  1. $touch test.txt  
(備註:在這裏能夠編寫和更改文件,本文只是講解Git庫的使用,因此只是簡單的建立了一個文件)

 

 

 

使用git diff 和 git status 命令能夠查看代碼當前的狀態

提交代碼

 

[plain]  view plain  copy
 
  1. $git add test.text  
  2. $git commit -a -m "second commit"  
  3. $git push origin master  
查看log信息

 

 

 

 

[plain]  view plain  copy
 
  1. $git log  

 

 

 

查看代碼倉庫中代碼是否提交成功

進入代碼倉庫目錄,查看代碼提交log

 

[plain]  view plain  copy
 
  1. $cd android4.2  
  2. $git log  
可以查看代碼提交的log信息,可是卻沒法看到咱們提交的代碼,怎麼回事呢?

 

 

 

若是使用了git init初始化,則遠程倉庫的目錄下,也包含work tree,當本地倉庫向遠程倉庫push時, 若是遠程倉庫正在push的分支上(若是當時不在push的分支,就沒有問題), 那麼push後的結果不會反應在work tree上,  也即在遠程倉庫的目錄下對應的文件仍是以前的內容。

使用如下命令便可查看提交的內容
$git reset --hard

回退到當前最新(本地最新)提交的代碼信息

相關文章
相關標籤/搜索