自从使用上了git进行版本控制以来,越发觉得是个好东西了。
为了让git用起来更舒心,根据udacity的Git课程,整理了Windows平台下配置Git工作空间的方法:
更改背景色
在Git CMD中的“属性——颜色”下更改字体和背景的颜色;
在Git Bash中的“options——looks”下更改前景色和背景色。
Tab自动补全
下载“git-completion.bash”
文件和“git-prompt.sh”
文件。
创建一个文件,名为“.bash_profile”
,将下述代码复制到文件中,如果存在此文件,则粘贴到文件后面。
这些文件必须放在用户主目录下,一般默认的用户主目录为“C:\users\ 用户名”下(可以在Git Bash中用命令“~”查看),可以通过设置环境变量中用户变量“HOME”为“E:\Git”更改用户主目录,然后将各种配置文件拷贝到更改的目录中。
# Enable tab completion
source ~/git-completion.bash #加载之前下载的git-completion.bash文件
# colors! #定义颜色
green="\[\033[0;32m\]"
blue="\[\033[0;34m\]"
purple="\[\033[0;35m\]"
reset="\[\033[0m\]"
# Change command prompt
# 加载之前下载的git-prompt.sh文件,在提示符下显示Git状态
source ~/git-prompt.sh
# 如果在代码库中更改了任何内容,提示信息中显示一个星号*
export GIT_PS1_SHOWDIRTYSTATE=1
# '\u' adds the name of the current user to the prompt
# '\$(__git_ps1)' adds git-related stuff
# '\W' adds the name of the current directory
# 设置提示信息,用户名-紫色,commit及Git相关-绿色,
# 当前所在目录后面跟个美元符号-蓝色,其他默认颜色
export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
配置 Git的外部文本编辑器
在Git Bash中运行以下 Git 配置命令。对应的目录为notepad++启动文件目录。
git config --global core.editor "'D:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
git config --global push.default upstream
git config --global merge.conflictstyle diff3
打开“.bash_profile”文件,将下面一行添加进去:
alias npad="D:/Program\ Files(x86)/Notepad++/notepad++.exe"
重启Git Bash,就可以用npad命令调用notepad++编辑器了。
设置默认地址(可选)
可以通过修改Git Bush快捷方式中的属性更改bush启动时的默认地址:
- Git Bush快捷方式 “目标”框中删掉后面的“–cd -to -home”
- “起始位置”改为希望的默认位置,eg. E:\Git