赞
踩
一、Git本地安装
Git-2.15.1.2-64-bit.exe -- 安装到一个非中文没有空格的目录下。
安装选项:
1、Choosing the default editor used by Git
建议使用VIM编辑器 :Use Vim (...)as Gits default editor
2、Adjusting your PATH environment
安全不修改PATH环境变量,仅在Git bash中使用Git -- Use Git from Git Bash only
3、Choosing HTTPS transport backend
使用默认值 Use the OpenSSL library
4、Configuring the line ending conversions
行末换行符转换方式 -- Checkout Windows-style,commit Unix-style line endings
5、Configuring the terminal emulator to use with Git Bash
执行Git命令的默认终端 -- Use MinTTY(...)
6、Configuring extra options
Enable file system caching
Enable Git Credential Manager
二、Git 命令
1、本地库的初始化:git init
在该命令所在的目录下生成隐藏的 .git 文件夹。
.git 目录中存放的是本地库相关的子目录和文件,不要删除,也不要胡乱修改。
2、设置签名:
作用: 区分不同开发人员的身份;
辨析: 这里设置的签名和登录远程库(代码托管中心)的账号、 密码没有任何关系。
项目级别/仓库级别: 仅在当前本地库范围内有效:
git config user.name tom_pro
git config user.email goodMorning_pro@atguigu.com
信息保存位置: ./.git/config 文件
系统用户级别: 登录当前操作系统的用户范围:
git config --global user.name tom_glb
git config --global goodMorning_pro@atguigu.com
信息保存位置: ~/.gitconfig 文件
3、操作命令:
git status -- 查看工作区、 暂存区状态
git add [file name] -- 将工作区的“新建/修改” 添加到暂存区
git commit -m
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。