Como instalar o bash-it no sistema bash do Windows 10

0

Eu trabalho muito com o git e o bash-it é uma ótima ferramenta de visualização, especialmente quando se trabalha com filiais. Eu esperava que alguém soubesse como instalar o "bash-it" (ou qualquer programa similar) dentro do ambiente bash do Windows 10?

Eu pesquisei sobre isso, mas a maioria dos artigos é sobre como configurá-lo em um Mac.

Eu esperava instalá-lo para que o trabalho com as ramificações do git se tornasse mais fácil.

Benefícios de ter bash-it

    
por iSaumya 28.09.2016 / 18:38

1 resposta

2

Não está claro para mim se você está com problemas ou se precisou de um passo a passo?

Suponho que você já tenha o Bash no Windows configurado até o ponto em que você pode abrir uma janela de Bash. Depois disso, certifique-se de executá-lo (encontrado em C: \ Windows \ System32 \ bash.exe) com privilégios de administrador (clique com o botão direito do mouse no File Explorer e escolha Executar como administrador ; você também pode criar um atalho que você pode fixar na barra de tarefas que executará o bash como Administrador sempre.

Uma vez feito isso, tudo que você precisa saber é que quando você tenta executar um programa que não está instalado, o bash responderá assim:

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

Basta fazer isso (por exemplo, sudo apt-get install $whatever ) sempre que precisar de um programa que não esteja instalado.

Seguindo as instruções na página do Bash-it GitHub funcionaram para mim usando o Bash desta forma:

~/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 ✓| → ~
    
por 28.09.2016 / 19:21