方法一:用 ~/.bash_profile 创建别名 原文:https://zhuanlan.zhihu.com/p/418321777 1.创建 .bash_profile vim ~/.bash_profile 写入想创建别名的命令 Git Bash 在 Win 端只会 source ~/.bash_profile 而不会激活 ~/.bashrc 的配置。 所以如果你和我一样,喜欢在 ~/.bashrc 配置别名,在 ~/.bash_profi...
1. 打开Git Bash或命令提示符。 2. 输入以下命令,设置Git全局配置: “`bash git config –global alias.别名 命令 “` 其中,“别名”是自定义的命令别名,可以根据个人喜好进行设置,“命令”是需要简化的Git命令。 下面是一些常用的Git命令别名示例: –`co`代替`checkout`命令,用于切换分支: “`bash git conf...
找到git安装路径 如我的:C:\Program Files\Git 编辑bash.bashrc文件,添加自定义alias命令 用编辑器打开文件,如vim、notepad++等等 vim"C:/Program Files/Git/etc/bash.bashrc" 追加自定义alias命令 aliasls='ls -F --color=auto --show-control-chars'aliasll='ls -l'aliasgrep='grep --color'...
重新打开git bash就可以了 # 例如git status alias gst='git status' vi /etc/profile # 在文件尾部加上 #例如 alias cls='clear' alias g='git' alias ga.='git add .' alias gb='git branch' alias gcl='git clone' alias gcm='git commit -m' alias gco='git checkout' alias gd='git diff...
举个例子就是ls --> dir,因为我们就算再windows下开发,也一定会安装git,然而这时候,git有自带一个命令行git bash,Linux下的命令基本上都支持。 然而我们有时候会想自定义一些缩写,比如使用docker的时候,我会习惯性不打docker-compose这么长的命令,而是直接缩写成dc,所以如果没有alias我会很不习惯,然而windows并没...
alias df='git diff' alias log='git log' alias ll='ls -l' 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 别名设置好保存后,回到 git bash 需要执行以下代码,使其生效: $ source ~/.bash_profile 1. windows上git bash中chmod +x不起作用 ...
1 设置为默认终端 1.1 Windows Terminal 配置 Git bash 为默认终端 1.2 VSCode 配置 Git bash 为默认终端 2 可能出现的配置问题 2.1 Windows Terminal 和 VSCode 打开 Git Bash,发现不会加载配置 2.2 Git Bash 不会加载 ~/.bashrc 的配置 2.3 Git-Bash 修改前缀 (隐藏用户 @ 主机) 2.4 修复 Git Bash 中文...
一、设置git-bash 下载配置文件,mavnn/mintty-colors-solarized >cd~ > mv .minttyrc.dark .minttyrc > vim .minttyrcFont=ConsolasFontHeight=14ForegroundColour=131, 148,150BackgroundColour=0, 43,54CursorColour=220, 50,47Black=7, 54,66BoldBlack=0, 43,54Red=220, 50,47BoldRed=203, 75,22Green...
1、C:\Program Files\Git\etc\gitconfig 添加: 【注意!】请将第二行最后的 “your-id” 修改成你在服务器上的实际 id,默认是姓名拼音。 [alias] go = "! bash -c \"git pull && git add .; if [ \\\"$*\\\" == \\\"\\\" ]; then git commit -a; else git commit -am \\\"$*\...
1、etc\gitconfig:[gui]encoding = utf-8 [i18n]commitencoding = gbk [svn]pathnameencoding = gbk 说明:打开 Git 环境中的中文支持。pathnameencoding设置了文件路径的中文支持。2、etc\git-completion.bash:alias ls='ls --show-control-chars --color=auto'说明:使得在 Git Bash 中输入 ls...