Windows 10 bashシステムにbash-itをインストールする方法


0

私はgitとbashで多くの作業をしています。特にブランチで作業する場合は、優れた視覚化ツールです。Windows 10 bash環境に「bash-it」(または同様のプログラム)をインストールする方法を誰かが知っていることを望んでいましたか?

私はそれについてGoogleで調べましたが、ほとんどの記事はMacでのセットアップに関するものです。

gitブランチでの作業がより簡単になるようにインストールしたいと思っていました。

bash-itの利点

スクリーンショット


インストール手順に従っているとどうなりましたか?
DavidPostill

@DavidPostillそこに記載されているコマンドを実行した後、何も変更されません。私のbashの経験は変わりません。それから私はこの記事を見ました:mandymadethis.com/pimp-your-command-line for Macで、もっとやらなければならないことがあるかもしれないことに気付きました。だから、私はここで尋ねました、誰かが誰もが役立つ素敵なステップバイステップのプロセスを書くことができるかもしれないことを願っています。
-iSaumya

インストール手順の実行中にステータスまたはエラーメッセージはありますか?
8ビットツリー

@ 8bittree私が見たことではない
-iSaumya

1
@iSaumya以下の私の答えを参照してください。.bashrc yを保持するかどうかを尋ねられたときに答えた可能性はありますか?その場合、.bashrcを脇に移動させ、それが何かを変更するかどうかを確認して、もう一度試してください。また、管理者として実行していることを確認してください。
トレイ

回答:


2

問題が発生しているかどうか、または単にウォークスルーが必要かどうかはわかりませんか?

Bashウィンドウを開くことができるように、既にWindowsでBashが設定されていると仮定しています。完了したら、必ず管理者権限で実行してください(C:\ Windows \ System32 \ bash.exeにあります)(エクスプローラーでbashを右クリックし、[ 管理者として実行 ]を選択します。ショートカットを作成することもできます。次に、管理者として毎回bashを実行するタスクバーにピン留めできます)。

それが完了したら、インストールされていないプログラムを実行しようとすると、bashは次のように応答することだけを知っておく必要があります。

~/src$ attr
The program 'attr' is currently not installed. You can install it by typing:
sudo apt-get install attr

sudo apt-get install $whateverインストールされていないプログラムが必要なときはいつでも(例えば)実行してください。

Bash-it GitHubページの指示に従うことで、この方法でBashを使用することができました。

~/src $ git clone https://github.com/Bash-it/bash-it.git
Cloning into 'bash-it'...
remote: Counting objects: 6339, done.
remote: Compressing objects: 100% (27/27), done.
remote: Total 6339 (delta 15), reused 6 (delta 6), pack-reused 6304
Receiving objects: 100% (6339/6339), 34.99 MiB | 13.00 MiB/s, done.
Resolving deltas: 100% (2867/2867), done.
Checking connectivity... done.
~/src $ cd bash-it/
trey@MYHOST:~/src/bash-it$ ./install.sh
Installing bash-it
Would you like to keep your .bashrc and append bash-it templates at the end? [y/N]
Your original .bashrc has been backed up to .bashrc.bak
Copied the template .bashrc into ~/.bashrc, edit this file to customize bash-it

Enabling sane defaults

Installation finished successfully! Enjoy bash-it!
To start using it, open a new tab or 'source /home/trey/.bashrc'.

To show the available aliases/completions/plugins, type one of the following:
  bash-it show aliases
  bash-it show completions
  bash-it show plugins

To avoid issues and to keep your shell lean, please enable only features you really want to use.
Enabling everything can lead to issues.
trey@MYHOST:~/src/bash-it$ source ~/.bashrc

 2016-09-28 13:05:47   MYHOST in ~/src/bash-it
± |master ✓|  bash-it show aliases
Alias               Enabled?  Description
ag                    [ ]     the silver searcher (ag) aliases
ansible               [ ]     ansible abbreviations
apt                   [ ]     Apt and dpkg aliases for Ubuntu and Debian distros.
atom                  [ ]     Atom.io editor abbreviations
bundler               [ ]     ruby bundler
clipboard             [ ]     pbcopy and pbpaste shortcuts to linux
curl                  [ ]     Curl aliases for convenience.
docker-compose        [ ]     docker-compose abbreviations
docker                [ ]     docker abbreviations
emacs                 [ ]     emacs editor
fuck                  [ ]
general               [x]     general aliases
git                   [ ]     common git abbreviations
gitsvn                [ ]     common git-svn abbreviations
heroku                [ ]     heroku task abbreviations
hg                    [ ]     mercurial abbreviations
homebrew-cask         [ ]     homebrew-cask abbreviations
homebrew              [ ]     homebrew abbreviations
jitsu                 [ ]     jitsu task abbreviations
laravel               [ ]     laravel artisan abbreviations
maven                 [ ]     maven abbreviations
npm                   [ ]     common npm abbreviations
osx                   [ ]     osx-specific aliases
phoenix               [ ]     phoenix abbreviations
rails                 [ ]     rails abbreviations
svn                   [ ]     common svn abbreviations
textmate              [ ]     textmate abbreviations
tmux                  [ ]     Tmux terminal multiplexer
todo                  [ ]     todo.txt-cli abbreviations
vagrant               [ ]     vagrant aliases
vim                   [ ]     vim abbreviations

to enable an alias, do:
$ bash-it enable alias  <alias name> [alias name]... -or- $ bash-it enable alias all

to disable an alias, do:
$ bash-it disable alias <alias name> [alias name]... -or- $ bash-it disable alias all

 2016-09-28 13:05:57   MYHOST in ~/src/bash-it
± |master ✓|  ~

ご回答ありがとうございました。正常にインストールしました。
-iSaumya
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.