windows Git 中Git bash执行命令之前显示时间
windows Git 中Git bash执行命令之前显示时间
PS1 prompt to show elapsed 显示经过的提示符time 时间
D:\MySoftware\DEV\VersionCtrl\Git\etc\profile.d\git-prompt.sh
1 |
|
How to Shorten Git Bash 如何缩短 Git BashPrompt 提示 (Windows) (视窗)
Asked 问道 2 years, 7 months ago 2年7个月前
Active 活跃 1 year, 6 months ago 一年零六个月前
Viewed 观看 8k times 8k 次
17
3
How do I shorten my git bash prompt from something like this
我如何缩短我的 git bash 提示从这样的东西
1 |
|
to something like this
这样的事情
1 |
|
I am using git bash on windows with git version 2.21.0 (26-02-2019)
我在 windows 上使用 git bash 和 git 版本2.21.0(26-02-2019)
Follow 跟着
edited 编辑Feb 26 ‘19 at 15:01 2月26’1915:01
18.7k 18.7 k66 gold badges 6枚金徽章4949 silver badges 49枚银徽章7979 bronze badges 79枚铜徽章
asked 问Feb 26 ‘19 at 14:41 2月26’1914:41
1,59422 gold badges 两枚金徽章1414 silver badges 14枚银质徽章2828 bronze badges 28枚铜徽章
3 Answers 3个答案
22
An alternative answer is to go to C:\Program Files\Git\etc\profile.d
and open the git-prompt.sh
file. It contains the default configuration/prompt for Git Bash.
另一种方法是进入 c: Program Files Git etc profile.d 并打开 Git-prompt。Sh 文件。它包含 Git Bash 的默认配置/提示。
1 |
|
In my configuration, I commented out the user@host<space>
, the MINGW64
and changed the working directory to its basename by changing \w
to \W
.
在我的配置中,我注释掉了 user@host < space > ,MINGW64,并通过将 w 更改为 w 将工作目录更改为 basename。
Follow 跟着
answered 回答Apr 23 ‘20 at 4:00 4月23日20时4分
34833 silver badges 3枚银质徽章77 bronze badges 7枚铜徽章
7
This works, but be careful: git updates overwrite this file. This file checks for the existence of 这是可行的,但是要小心: git 更新会覆盖这个文件
~/.config/git/git-prompt.sh
which if exists takes precedence, so you’re better of making your changes there, or directly in 如果存在优先,所以你最好在那里修改,或者直接在~/.bashrc
.I’m unable to change git- 我不能改变 git-prompt 提示.sh file as the system is complaining that’s readonly file. chmod also isn’t working (permission denied). What I might be missing? .Sh 文件,因为系统正在抱怨这是只读文件。Chmod 也不工作(许可被拒绝)。我可能错过了什么?
17
In Git Bash:
在 Git Bash 中:
1 |
|
In notepad, add the line PS1="foobar>"
(replace foobar>
with whatever text you want)
在 notepad 中,添加行 PS1 = “ foobar >”(将 foobar > 替换为您想要的任何文本)
After saving ~/.bashrc
, in Git Bash, run the command:
在 Git Bash 中保存 ~/. bashrc 之后,运行以下命令:
1 |
|
You may find this online .bashrc
generator useful to experiment with to find a prompt you like.
你可能会发现这个在线.bashrc 生成器有用的实验,找到一个提示您喜欢。
Follow 跟着
answered 回答Feb 26 ‘19 at 14:59 2月26’1914:59
18.7k 18.7 k66 gold badges 6枚金徽章4949 silver badges 49枚银徽章7979 bronze badges 79枚铜徽章
after the command notepad .bashrc i get a message ‘would you like to create a .bashrc file’ and it opens a blank file 在命令记事本后面。我收到一条消息,你想创建一个。然后打开一个空白文件
1
@malikbagwala Then say “Yes” to that @ malikbagwala 那就答应吧
-5
The:
返回文章页面
LAPTOP-7R9912OI MINGW6
is the name of your PC.
是你电脑的名称。
Search in setting
在设置中搜索
‘about your PC’
关于你的电脑
and look for
然后寻找
rename
重新命名
There you can rename your pc and it should change the username in git-bash
在那里你可以重命名你的电脑,它应该改变在 git-bash 的用户名
Follow 跟着