Closed
Description
Setup
- Which version of Git for Windows are you using? Is it 32-bit or 64-bit?
git version 2.9.0.windows.1
- Which version of Windows are you running? Vista, 7, 8, 10? Is it 32-bit or 64-bit?
Windows [Version 10.0.14393]
- What options did you set as part of the installation? Or did you choose the
defaults?
Path Option: Cmd
SSH Option: OpenSSH
CRLF Option: CRLFAlways
Bash Terminal Option: MinTTY
Performance Tweaks FSCache: Enabled
- Any other interesting things about your environment that might be related
to the issue you're seeing?
The git bash shell installed on my machine is based on MINGW64
Details
- Which terminal/shell are you running Git from? e.g Bash/CMD/PowerShell/other
**Bash Shell **
- What commands did you run to trigger this issue? If you can provide a
Minimal, Complete, and Verifiable example
this will help us understand the issue.
webpack --progress --w --config someConfig.js
CTRL-Z
jobs
fg %1
- What did you expect to occur after running these commands?
I am running webpack with watch option in the shell, and CTRL-Z to let it run in background. Then typed jobs
command, and it list the webpack
job. As long as this job is not terminated, it should be able to be brought back
- What actually happened instead?
Waited for few seconds and typed jobs
again, but this time didn't list anything while the command is running actively in the bg. And i couldn't use fg
to bring it back. Also it doesn't exist in the result of ps
- If the problem was occurring with a specific repository, can you provide the
URL to that repository to help us with testing?
Not seems like related to repo