2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[memo] Console2 + git bash やめました。

Last updated at Posted at 2015-08-27

Console2 + git bash を使っていたが、やめた。不満だったのは、

  • single quotation が入力できなかった (autohotkey で key 排列をいじっているせいか?)
    • -> autohotkey の script の書き方が原因だった。vk, sc での記述をやめたらできるようになった。
  • 日本語が入力できなかった
  • 環境変数 (特に path) の設定・表示が simple でなかった。

いまは gnupack の cygwin を使っている。上記不満は解消された。ただ、 git push ができなくて困っている。 git push だけは git bash でやっている。

memo

確か、 cygwin と git bash で違う git を起動していた気がする。これが原因の可能性がある。

which git すると

  • git bash: /bin/git
  • cygwin: /c/Users/<username>/Appdata/Local/Programs/Git/bin/git

-> apt-cyg で git を install した。すると、

$ which git
# => /usr/bin/git

となった。

2
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?