git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Bug Report with Git Bash
@ 2023-03-19 11:35 sang.tts.designer
       [not found] ` <CAN0heSqEH+AtzXcybPY-Jd-bRtgtKmGrfxbXL-adsvjr_srEZw@mail.gmail.com>
  0 siblings, 1 reply; 4+ messages in thread
From: sang.tts.designer @ 2023-03-19 11:35 UTC (permalink / raw)
  To: git

Dear Git community,
I have observed a bug related to git bash at my end. Please the following
description.
Thank you for filling out a Git bug report!
Please answer the following questions to help us understand your issue.

What did you do before the bug happened? (Steps to reproduce your issue)
Please note that 'ls' command just an example, it's happening with any
command.
This is a relatively simple bug. when we double-type a command, like 'ls'.
However, in the Ubuntu environment, the command only occurs once when we
press the top arrow to use the prior command.
It is identical when using git bash.
Repeat these steps:
Type "ls: in git bash.
2. Type "ls" once more.
3. To return to the previous command, use the top arrow.
As you can see, the number of times we type the can command 'ls' does not
matter; it only needs to occur once.
Please be aware that the command "ls" is only an example; this can happen
with any command.

What did you expect to happen? (Expected behavior)
It's only need to appear once time and remove duplicated for more
convenience.

What happened instead? (Actual behavior)
It's depending on how many times we type that command.

What's different between what you expected and what actually happened?
As described above.
Anything else you want to add:

Please review the rest of the bug report below.
You can delete any lines you don't wish to share.


[System Info]
git version:
git version 2.33.0.windows.2
cpu: x86_64
built from commit: 8735530946cced809cc6cc4c2ca3b078cdb3dfc8
sizeof-long: 4
sizeof-size_t: 8
shell-path: /bin/sh
feature: fsmonitor--daemon
uname: Windows 10.0 22621 
compiler info: gnuc: 10.3
libc info: no libc information available
$SHELL (typically, interactive shell): C:\Program Files\Git\usr\bin\bash.exe


[Enabled Hooks]


--
Thanks and Best Regards!
---------------------------------------------------
Sang Truong Tan 

Department of Electronics
HCMC University of Technology
Phone: (+84) 977 600 563 or (+84) 908 983 574
Email: sang.tts.designer@gmail.com



^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Bug Report with Git Bash
       [not found]   ` <001d01d95a63$f1fa38b0$d5eeaa10$@gmail.com>
@ 2023-03-19 13:11     ` sang.tts.designer
  2023-03-27  7:17       ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: sang.tts.designer @ 2023-03-19 13:11 UTC (permalink / raw)
  To: martin.agren; +Cc: git

Dear Martin,
What a very quick response!
I just tried your recommendation, and it works.
There is no word that can explain my appreciation, to be honest!
Thanks a million.

--
Thanks and Best Regards!
---------------------------------------------------
Sang Truong Tan 

Department of Electronics
HCMC University of Technology
Phone: (+84) 977 600 563 or (+84) 908 983 574
Email: mailto:sang.tts.designer@gmail.com

From: Martin Ågren <mailto:martin.agren@gmail.com> 
Sent: Sunday, March 19, 2023 7:28 PM
To: mailto:sang.tts.designer@gmail.com
Cc: mailto:git@vger.kernel.org
Subject: Re: Bug Report with Git Bash

Hi,

On Sunday, 19 March 2023, <mailto:sang.tts.designer@gmail.com> wrote:
This is a relatively simple bug. when we double-type a command, like 'ls'.
However, in the Ubuntu environment, the command only occurs once when we
press the top arrow to use the prior command.
It is identical when using git bash.
Repeat these steps:
Type "ls: in git bash.
2. Type "ls" once more.
3. To return to the previous command, use the top arrow.
As you can see, the number of times we type the can command 'ls' does not
matter; it only needs to occur once.

This depends on how your shell is configured.

Look into HISTCONTROL and ignoredups.

You might want something like

  export HISTCONTROL=ignoredups

in ~/.bashrc.

Martin


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Bug Report with Git Bash
  2023-03-19 13:11     ` sang.tts.designer
@ 2023-03-27  7:17       ` Johannes Schindelin
  2023-03-28 13:16         ` sang.tts.designer
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2023-03-27  7:17 UTC (permalink / raw)
  To: sang.tts.designer; +Cc: martin.agren, git

[-- Attachment #1: Type: text/plain, Size: 1813 bytes --]

Hi,

FWIW the reason why you see it in your Ubuntu setup is most likely rooted
in the `/etc/skel/.bashrc` file that contains this:

	# don't put duplicate lines or lines starting with space in the history.
	# See bash(1) for more options
	HISTCONTROL=ignoreboth

Ciao,
Johannes

On Sun, 19 Mar 2023, sang.tts.designer@gmail.com wrote:

> Dear Martin,
> What a very quick response!
> I just tried your recommendation, and it works.
> There is no word that can explain my appreciation, to be honest!
> Thanks a million.
>
> --
> Thanks and Best Regards!
> ---------------------------------------------------
> Sang Truong Tan
>
> Department of Electronics
> HCMC University of Technology
> Phone: (+84) 977 600 563 or (+84) 908 983 574
> Email: mailto:sang.tts.designer@gmail.com
>
> From: Martin Ågren <mailto:martin.agren@gmail.com>
> Sent: Sunday, March 19, 2023 7:28 PM
> To: mailto:sang.tts.designer@gmail.com
> Cc: mailto:git@vger.kernel.org
> Subject: Re: Bug Report with Git Bash
>
> Hi,
>
> On Sunday, 19 March 2023, <mailto:sang.tts.designer@gmail.com> wrote:
> This is a relatively simple bug. when we double-type a command, like 'ls'.
> However, in the Ubuntu environment, the command only occurs once when we
> press the top arrow to use the prior command.
> It is identical when using git bash.
> Repeat these steps:
> Type "ls: in git bash.
> 2. Type "ls" once more.
> 3. To return to the previous command, use the top arrow.
> As you can see, the number of times we type the can command 'ls' does not
> matter; it only needs to occur once.
>
> This depends on how your shell is configured.
>
> Look into HISTCONTROL and ignoredups.
>
> You might want something like
>
>   export HISTCONTROL=ignoredups
>
> in ~/.bashrc.
>
> Martin
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Bug Report with Git Bash
  2023-03-27  7:17       ` Johannes Schindelin
@ 2023-03-28 13:16         ` sang.tts.designer
  0 siblings, 0 replies; 4+ messages in thread
From: sang.tts.designer @ 2023-03-28 13:16 UTC (permalink / raw)
  To: 'Johannes Schindelin'; +Cc: martin.agren, git

Dear Johannes,
Thanks a lot for your information.

--
Thanks and Best Regards!
---------------------------------------------------
Sang Truong Tan 

Department of Electronics
HCMC University of Technology
Phone: (+84) 977 600 563 or (+84) 908 983 574
Email: sang.tts.designer@gmail.com

-----Original Message-----
From: Johannes Schindelin <Johannes.Schindelin@gmx.de> 
Sent: Monday, March 27, 2023 2:17 PM
To: sang.tts.designer@gmail.com
Cc: martin.agren@gmail.com; git@vger.kernel.org
Subject: RE: Bug Report with Git Bash

Hi,

FWIW the reason why you see it in your Ubuntu setup is most likely rooted in the `/etc/skel/.bashrc` file that contains this:

	# don't put duplicate lines or lines starting with space in the history.
	# See bash(1) for more options
	HISTCONTROL=ignoreboth

Ciao,
Johannes

On Sun, 19 Mar 2023, sang.tts.designer@gmail.com wrote:

> Dear Martin,
> What a very quick response!
> I just tried your recommendation, and it works.
> There is no word that can explain my appreciation, to be honest!
> Thanks a million.
>
> --
> Thanks and Best Regards!
> ---------------------------------------------------
> Sang Truong Tan
>
> Department of Electronics
> HCMC University of Technology
> Phone: (+84) 977 600 563 or (+84) 908 983 574
> Email: mailto:sang.tts.designer@gmail.com
>
> From: Martin Ågren <mailto:martin.agren@gmail.com>
> Sent: Sunday, March 19, 2023 7:28 PM
> To: mailto:sang.tts.designer@gmail.com
> Cc: mailto:git@vger.kernel.org
> Subject: Re: Bug Report with Git Bash
>
> Hi,
>
> On Sunday, 19 March 2023, <mailto:sang.tts.designer@gmail.com> wrote:
> This is a relatively simple bug. when we double-type a command, like 'ls'.
> However, in the Ubuntu environment, the command only occurs once when 
> we press the top arrow to use the prior command.
> It is identical when using git bash.
> Repeat these steps:
> Type "ls: in git bash.
> 2. Type "ls" once more.
> 3. To return to the previous command, use the top arrow.
> As you can see, the number of times we type the can command 'ls' does 
> not matter; it only needs to occur once.
>
> This depends on how your shell is configured.
>
> Look into HISTCONTROL and ignoredups.
>
> You might want something like
>
>   export HISTCONTROL=ignoredups
>
> in ~/.bashrc.
>
> Martin
>
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-28 13:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-19 11:35 Bug Report with Git Bash sang.tts.designer
     [not found] ` <CAN0heSqEH+AtzXcybPY-Jd-bRtgtKmGrfxbXL-adsvjr_srEZw@mail.gmail.com>
     [not found]   ` <001d01d95a63$f1fa38b0$d5eeaa10$@gmail.com>
2023-03-19 13:11     ` sang.tts.designer
2023-03-27  7:17       ` Johannes Schindelin
2023-03-28 13:16         ` sang.tts.designer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).