将Ubuntu终端更改为类似于Window的Git-bash

时间:2019-04-17 14:30:50

标签: git terminal git-bash ubuntu-18.04

是否可以用Window的Git-bash(外观和行为)更改/替换默认的Ubuntu终端?基本上,终端应该显示与当前分支/仓库有关的所有必要信息,就像在Window中一样。

我正在使用VS Code,并已为Window platform配置了Git-Bash。但是找不到任何可以让我在Ubuntu平台上实现相同目标的东西。

我已经检查了以下链接以获得答案-

  1. Git bash on Ubuntu。 ->更改后,它显示当前分支,但是所有整个文本/字符串变成单调的白色。
  2. How can I have a shell for git like in Windows?。 ->只有分支名称的文本颜色保持为绿色,其他所有颜色变为白色。

2 个答案:

答案 0 :(得分:2)

在提出 @kostix 建议之后,我在互联网上搜索了适当的关键字,找到了reference,最后找到了this question thread。在尝试了上面提到的方法之后,我得到了下面的代码,效果更好。将这些代码添加到public class GGG { [Key] public Guid Id { get; set; } public string Location { get; set; } public string Country { get; set; } public string CustomerName { get; set; } public string PlantModel { get; set; } public string EntrySystem { get; set; } public string Technology { get; set; } } 文件夹中的.bashrc文件中。使用Home命令找到它。

~/.bashrc/

Ubuntu的终端屏幕截图-

this page

VS代码的终端屏幕截图-

enter image description here

您可以根据自己的选择更新代码以更改颜色代码。

答案 1 :(得分:0)

Git bash在那里没有什么特别的功能:它只是Windows bash shell的端口。

“窍门”(不是)是对bash启动脚本进行的调整,以使其具有动态生成的提示。 这些调整再一次,除了普通的Git命令外,没有什么特别的要求。

现在,请做进一步的研究,并将GfW所做的调整应用于您的本地bash设置。