Git for Windows와 함께 제공되는 Bash 셸을 실행할 수 있습니다. 나는 이것을 내 안에 넣었다 .emacs
.
(defun git-bash () (interactive)
(let ((explicit-shell-file-name "D:/Program Files/git/bin/bash"))
(call-interactively 'shell)))
그리고 M-x git-bash
짜잔, bash가 실행 중이지만 이상한 점이 있습니다.
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
^[]0;MINGW64:/c/Users/M??rton^G
MĂĄrton@Marci MINGW64 /c/Users/MĂĄrton
$
그리고 ^[]
내가 실행하는 모든 명령 후에으로 시작하여 해당 줄을 인쇄 합니다. 또한 인코딩이 엉망입니다. 이 문제를 어떻게 해결할 수 .emacs
있습니까?
MĂĄrton
읽어Márton
)