Skip to content

Commit

Permalink
Arruma typos e simplifica output
Browse files Browse the repository at this point in the history
  • Loading branch information
anarute committed Mar 3, 2024
1 parent 6891399 commit 273f788
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Instale o pacote usando `cargo install guit`.

Você pode usar direto `guit <comando>`, exemplo: `guit puxa` para rodar `git pull`.

Ou se quiser pode até criar um ~alias~ apelido para usar git direto passando os comandos em português, como `git puxar`.
Ou se quiser pode até criar um ~alias~ apelido para usar git direto passando os comandos em português, como `git puxa` e `git empurra`.

Para isso, adicione `alias git='guit'` na configuração do seu shell, se for BASH, em `~/.bashrc`.

Expand Down
4 changes: 1 addition & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ mod lista_comandos;

fn main() {
let commands_map = lista_comandos::get_command_map();
// let flags_map = lista_comandos::get_flags_map();

let args: Vec<String> = env::args().skip(1).collect();

let git_command = match args.get(0) {
Some(user_command) => match commands_map.get(user_command.as_str()) {
Some(&git_command) => git_command,
None => {
eprintln!("Tradução não encontrada, tentando rodar git com o comando {} enviado.", user_command.as_str());
eprintln!("Tradução não encontrada, tentando rodar `git {}`.", user_command.as_str());
user_command.as_str()
}
},
Expand Down

0 comments on commit 273f788

Please sign in to comment.