桌面图标点鼠标右键,选择属性,修改工作目录到自己的git目录:
打开快速编辑,这时候鼠标左键可以随意选取文本,enter键复制。鼠标右键是粘贴。另外,粘贴的快捷键是 inerst键
修改默认窗口大小
如果你感觉你的git bash运行反应速度很慢,修改git安装目录 etc/profile 文件内容,把PS1定义部分代码注释掉,把PS1定义为简单的: PS1="$ ",速度会得到大力提升
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# non-printable characters must be enclosed inside \[ and \] #PS1='\[\033]0;$MSYSTEM:${PWD//[^[:ascii:]]/?}\007\]' # set window title #PS1="$PS1"'\n' # new line #PS1="$PS1"'\[\033[32m\]' # change color #PS1="$PS1"'\u@\h ' # user@host<space> #PS1="$PS1"'\[\033[33m\]' # change color #PS1="$PS1"'\w' # current working directory #if test -z "$WINELOADERNOEXEC" #then # PS1="$PS1"'$(__git_ps1)' # bash function #fi #PS1="$PS1"'\[\033[0m\]' # change color #PS1="$PS1"'\n' # new line #PS1="$PS1"'$ ' # prompt: always $ PS1= "$ "
|