建立乙個資料夾用作本地git倉庫(repository)
$ mkdir repository
cd到該目錄,初始化該目錄,之後可用git管理
$ cd repository
$ git init
在該目錄可用 ls -ah看到隱藏的資料夾.git ,該資料夾用於管理倉庫
新增檔案到庫
在repository的本地目錄或子目錄下,加入hello.json
$ git add hello.json
此時已經將檔案新增到了暫存區,再用git commit命令提交
$ git commit -m "add hello.json"
[master (root-commit) 2743d73] add hello.json
1 file changed, 1 insertion(+)
create mode 100644 hello.json
其中,commit時需要新增commit資訊,指令為
git commit -m "要新增的資訊"
通常,要新增的資訊為本次提交做了些什麼
工作區狀態
當hello.json被更改時,可以用 git status檢視更改概要
$ git status
on branch master
changes not staged for commit:
(use "git add ..." to update what will be committed)
(use "git checkout -- ..." to discard changes in working directory)
modified: hello.json
可見hello.json已經被修改,而要檢視修改詳情,使用 git diff即可
$ git diff hello.json
diff --git a/hello.json b/hello.json
index 2889c67..0261296 100644
--- a/hello.json
+++ b/hello.json
@@ -1 +1,2 @@
-hello,world!
\ no newline at end of file
+hello,world!
+add a line
\ no newline at end of file
再次提交更改過的hello.json,並檢視狀態
git add hello.json
git常用操作
git是一款分布式的版本控制軟體,相比svn,功能更強大,自然而然操作更複雜一些。git在本地也是以git版本庫的形式管理,而svn在本地管理的僅是乙個版本庫的副本。很明顯的乙個不同點 git你可以在本地做一些修改,然後commit到本地的版本庫,最後push到伺服器,而svn只要一commit,更...
Git常用操作
有時候我們需要修改之前提交的時候的說明資訊,沒有操作命令可以直接完成,但是使用rebase命令可以實現。例如我們要修改倒數第二次的提交的說明資訊 git rebase i head 3 注意 這裡head 後面跟著的是3而不是2,因為這裡指的是要修改的提交的父提交。之後會進入到文字編輯介面,如下圖 ...
Git常用操作
這裡記錄目前我最常用的操作。因為是最常用的,就不包括什麼建立倉庫,設定使用者資訊啊,這種設定一次的了。先上一張圖 1.分支管理 檢視本地分支 git branch 檢視所有分支 本地 遠端 git branch a 建立分支 git branch 切換分支 git checkout 建立 切換分支 ...