mac中安装git并忽略.DS_Store

一Homebrew安装git

1.安装 Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.安装git

brew install git

二xcode安装git

1.在mac终端中直接输入git.提示是否安装开发者工具,点击安装(不要点获取Xcode)

mac中安装git并忽略.DS_Store_第1张图片

 

 

 

2.软件安装完成,点击完成即可

mac中安装git并忽略.DS_Store_第2张图片

三命令补全

https://git-scm.com/book/zh/v1/Git-%E5%9F%BA%E7%A1%80-%E6%8A%80%E5%B7%A7%E5%92%8C%E7%AA%8D%E9%97%A8

下载tar包并进入包中contrib/completion目录

cp git-completion.bash ~/.git-completion.bash

mac中~/.bash_profile 其他Linux中~/.bashrc文件中加入

source ~/.git-completion.bash

四配置

3. 使用 git config 命令设置你自己的用户名与邮箱地址

git config --global user.name "your name"
git config --global user.email  "your [email protected]"

 

 

4.随便找个文件夹(这里使用家目录下的Code文件夹),

  使用 git init 命令初始化代码仓库,

  使用 git status 命令查看git状态,

  可以看到有.DS_Store文件,这是mac自动生成的,与项目无关,如果不忽略将与其他人的版本冲突

mac中安装git并忽略.DS_Store_第3张图片

 

二设置全局忽略.DS_Store

 

 

 

1.编辑用户家目录下的 .gitignore_global 文件,添加忽略规则

vi ~/.gitignore_global

 

2.向 .gitignore_global 加入以下两行

.DS_Store
*/.DS_Store

 

 

3.查看用户家目录的位置

pwd

 

4.编辑用户家目录下的 .gitconfig 文件,添加忽略规则文件

vi ~/.gitconfig

5.向 .gitconfig 文件追加以下内容

[core]
	 excludesfile = /Users/zxxair/.gitignore_global

其中 /Users/zxxair/ 是第三步中家目录的位置,后面的 .gitignore_global 是第一步新建的忽略规则文件

追加后的文件内容如下图所示,编辑完成后保存退出

mac中安装git并忽略.DS_Store_第4张图片

 

6.进入用户家目录下Code文件夹,使用 git status 命令查看状态,可以看到已经没有 .DS_Store 文件,证明忽略规则已经生效

mac中安装git并忽略.DS_Store_第5张图片

 

你可能感兴趣的:(linux)