您好,登錄后才能下訂單哦!
本文git為1.9.6版本:
一、git全局配置
二、git初始化本地倉庫
三、git文件狀態詳解
四、git文件撤銷、恢復操作
git提交流程層次如下:
git repository 視為線上code集中管理服務器;也就是我們的code最后的位置;
git staging area 視為我們本地的code集中管理服務器,可認為code的中間的暫留區(以相對repository來說);
git working directory 視為我們本地編輯的code,也就是代碼編輯處;
1:全局配置
leo@LEO-PC /d/User/leo/Desktop/git (master) $ git config --global user.name "lansgg" leo@LEO-PC /d/User/leo/Desktop/git (master) $ git config --global user.email "coffee_lanshan@sina.com"
這里配置 --global選項其實就是在修改家目錄下的.getconfig文件
如我的:
C:\Users\leo\.getconfig
內容:
[user] name = lansgg email = coffee_lanshan@sina.com [color] ui = true [core] autocrlf = true excludesfile = C:\\Users\\leo\\Documents\\gitignore_global.txt
當我們修改此文件,比如將name=test (內容已經修改)
$ git config --get user.name
這里的用戶名及郵件地址都是在提交代碼的時候進行標識的,顯示提交人的信息;
2:初始化本地git倉庫
本地新建一個目錄;執行git init ;
$ mkdir git $ git init
執行后的變化就是多了一個.git目錄;
leo@LEO-PC /d/User/leo/Desktop/git (master) $ ls -a .git . COMMIT_EDITMSG config hooks info objects .. HEAD description index logs refs leo@LEO-PC /d/User/leo/Desktop/git (master) $
.git 目錄,其中存放的是我們所提交的文檔索引內容,Git 可基于文檔索引內容對其所管理的文檔進行內容追蹤,從而實現文檔的版本控制。.git目錄位于工作目錄內。
index(索引):將工作目錄下所有文件(包含子目錄)生成快照,存放到一個臨時的存儲區域,Git 稱該區域為索引。
3、git文件狀態詳解
3.1、現在新建我們的code;
leo@LEO-PC /d/User/leo/Desktop/git (master) $ touch README.txt leo@LEO-PC /d/User/leo/Desktop/git (master) $ cat hello.rb puts "hello world!"
我們要將he.rb 、README 提交到本地git repository;
3.2、首先查看文件的狀態
$ git status
或
$ git status -s
根據輸出信息可以看出,README.txt hello.rb 兩個文件處于master branch(主分支),這兩個文件處于未追蹤文件,也就當我們執行git commit(用于提交到圖中的倉庫)命令的時候不會將他們提交到git repository;
上圖 -s 表示簡要信息;( ?? )兩個問號也有很重要的意義;
第一個 ? 主要表示staging area 和 repository 兩個區域間的文件變化,一般會有兩個字母來表示(A、M <綠色>);A 表示此文件已經是在追蹤文件,M 表示此文件已經在staging area區域修改,還沒有提交到repository。
第二個 ? 主要表示working directory 和 staging area 兩個區域間的文件變化,M <紅色> 表示此文件已經working directory區域修改,還沒有提交到staging area
下面開始演示:git add 表示將文件進行追蹤;
$ git add README.txt $ git add hello.rb
再次查看文件狀態
$ git status -s
可以看到兩個文件已經處于 A 狀態 (追蹤)現在這兩個文件處于staging area區域; changes to be committed 可以進行提交了;輸出信息提示,可以使用git reset HEAD <file> 將文件恢復于未追蹤狀態;
恢復到已經追蹤的狀態,進行提交測試;
$ git commit -m "first commit" #-m 表示提交此代碼時進行描述;我們這里描述為“first commit”
可以看到wording directory clean 已經將此兩個文件提交到repository;(從staging area區域),并查看文件狀態時,不在輸出任何東西
3.2 修改本地code,再查看文件狀態
$ echo 'puts "hello world!" '>> hello.rb
$ git status -s
第二個 ? 的地方出現了M <紅色> 表示此文件已經在working directory區域修改;輸出信息提示,hello.rb文件已經modified ; 命令 git add && git checkout && git commit -a (圖示都有) 下面講;
如何將此文件提交到repository
$ git add hello.rb $ git commit -m "second commit" hello.rb
或者使用:
$ git commit -a -m "second commit"
此命令將跳過git add 這一步~
4、撤銷、恢復
4.1、修改本地working directory 的code ;然后撤銷修改,也就說從staging area區域取出此code覆蓋當前working directory的code;
測試如下:
$ echo 'puts "hello world!"' >> hello.rb #修改本地code $ git status -s #查看文件的狀態,有差異 $ git checkout hello.rb #從staging area區域取出此code $ git status -s #再次查看該文件的狀態,無差異,并且代碼恢復到了之前的代碼
4.2、修改本地working directory的code,并且進行追蹤(add 到 staging area區域);然后我們想撤銷本地code的修改,那我們可以從repository倉庫拉出此code覆蓋到staging area,然后再從staging area區域取出覆蓋到working directory區域;測試如下:
$ echo 'puts "hello world!"' >> hello.rb $ git status -s $ git add hello.rb $ git status -s $ git reset hello.rb $ git status -s $ git checkout hello.rb $ git status -s # 每一步都進行了文件狀態差異的核對;
我們也可以不用這么麻煩,可以直接從 repository 區域拉取出來直接覆蓋到 working directory 區域:
$ echo 'puts "hello world!"' >> hello.rb $ git status -s $ git add hello.rb $ git status -s $ git checkout HEAD hello.rb $ git status -s
可以看到已經從git repository 拉取此文件并進行了覆蓋~
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。