Git简要笔记(之一)

Git使用的人越来越多,它是一个非常好的版本控制软件,GitHub就是一个使用Git作为版本控制的一个远程仓库,上面有很多免费资源,学习Git有助于我们共享资源。

在Git操作窗口中要用到的命令:

ls clear cd pwd touch mkdir(不详解只列出来,不懂的可以跳过)

一、初始化本地Git:

用户名:git config --global user.name "Zhe Guo"

邮箱:  git config --global user.email "[email protected]"

二、创建本地版本库

就是把你存放文件的目录写入文件,让它变成Git库,文件是放在该目录下自动生成的一个隐藏文件夹中。(先在f盘中根目录下建一个gi目录)

用git init命令

lt4@ltu MINGW64 /f/gi

$ git init

Initialized empty Git repository in F:/gi/.git/

三、把文件添加到暂存区

把目录中的1.txt文件添加到暂存区(你需要在目录中先建一个1.txt文件)

用git add 1.txt

lt4@ltu MINGW64 /f/gi (master)

$ ls

1.txt  testgit/

lt4@ltu MINGW64 /f/gi (master)

$ git add 1.txt

把1.txt用git add添加到暂存区

没有任何提示说明已经添加成功

四、把暂存区中的文件提交到仓库

用git commit -m命令

lt4@ltu MINGW64 /f/gi (master)

$ git commit -m "1.txt 第一次提交"

[master (root-commit) 7963edc] 1.txt 第一次提交

1 file changed, 2 insertions(+)

create mode 100644 1.txt

五、查看暂存区是否有文件未提交

用git status命令

没有未提交的文件

lt4@ltu MINGW64 /f/gi (master)

$ git status

On branch master

nothing to commit, working tree clean

六、查看文件改过什么内容

用git diff 1.txt命令

lt4@ltu MINGW64 /f/gi (master)

$ git diff 1.txt

diff --git a/1.txt b/1.txt

index f45a072..5ab530e 100644

--- a/1.txt

+++ b/1.txt

@@ -1,4 +1,7 @@

  a=1

   b=4+87

-d=a+b

+//޸+e=38

\ No newline at end of file


七、提交文件到仓库

第一步是git add 第二步是git commit

lt4@ltu MINGW64 /f/gi (master)

$ git add 1.txt

lt4@ltu MINGW64 /f/gi (master)

$ git commit -m "1.txt 第二次提交"

[master c452fe5] 1.txt 第二次提交

1 file changed, 4 insertions(+), 1 deletion(-)


待继:::

你可能感兴趣的:(Git简要笔记(之一))