Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git 的安装与使用 #15

Open
Moonlightg opened this issue Sep 27, 2017 · 0 comments
Open

Git 的安装与使用 #15

Moonlightg opened this issue Sep 27, 2017 · 0 comments
Labels

Comments

@Moonlightg
Copy link
Owner

Moonlightg commented Sep 27, 2017

一、下载安装Git

下载Git 官方地址为:https://git-scm.com/download/win

image

选择版本进行安装,一路Next选择安装路径,安装完成。

安装成功: 回到电脑桌面,鼠标右击如果看到有两个git单词则安装成功

image

二、Git初始化及仓库创建和操作

1、Git安装之后需要进行一些基本信息设置

  a、设置用户名:git config -- global user.name '你再github上注册的用户名';

  b、设置用户邮箱:git config -- global user.email '注册时候的邮箱';

注意:该配置会在github主页上显示谁提交了该文件

  c、配置ok之后,我们用如下命令来看看是否配置成功

  git config --list

注意:git config --global 参数,有了这个参数表示你这台机器上所有的git仓库都会使用这个配置,当然你也可以对某个仓库指定不同的用户名和邮箱

2、初始化一个新的git仓库

  a、创建文件夹

    方法一:可以鼠标右击-》点击新建文件夹test1

    方法二:使用git新建:$ mkdir test1

    b、在文件内初始化git(创建git仓库)

    方法一:直接输入 $ cd test1,输入$ git init

    方法二:点击test1文件下进去之后-》鼠标右击选择Git Bash Here->输入$ git init

image

4个区

工作区(Working Area)
暂存区(Stage)
本地仓库(Local Repository)
远程仓库(Remote Repository)

5个状态

未修改(Origin)
已修改(Modified)
已暂存(Staged)
已提交(Committed)
已推送(Pushed)

检测修改

已修改,未暂存

git diff
@Moonlightg Moonlightg added the GIT label Sep 27, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant