An open API service indexing awesome lists of open source software.

https://github.com/williankeller/bash-settings-ever

Great default settings for your terminal
https://github.com/williankeller/bash-settings-ever

bash bash-script bashrc git mysql terminal

Last synced: 3 months ago
JSON representation

Great default settings for your terminal

Awesome Lists containing this project

README

          

# Bash Settings Ever
Great default settings for your terminal

## Quick start
Open your default bash file:
```shell
~/.bashrc
```
Now, open we ```.bashrc``` file and copy all content.
Insert content below your last file line.

## Alias to Git
To any action below, just type:

#### Git status
Show the working tree status of the current brench.
```shell
$ gst
```

#### Git pull
Fetch from and integrate with another repository or a local branch.
```shell
$ gl
```

#### Git push
Update remote refs along with associated objects.
```shell
$ gp
```

#### Git difftool
Show changes using common diff tools.
```shell
$ difftool
```

#### git log
Show commit logs (line by line).
```shell
$ git log --pretty=oneline
```

#### Git checkout
Switch branches or restore working tree files
```shell
$ git checkout
```

#### Git merge
Join two or more development histories together
```shell
$ git merge
```

#### Git commit
Record changes to the repository
```shell
$ git commit
```

#### Git branch
List, create, or delete branches
```shell
$ git branch
```

## Alias Customs
To any action below, just type:

#### Login in MySQL
Use to connect into your MySQL, set default auth data.
```shell
$ ml
```

#### Restart Apache
Use to restart your Apache.
```shell
$ ra
```

#### Open Chrome Browser
Use this command to open chrome browser
```shell
$ chrome
```

#### Open Chrome Browser on Anonymous Mode
Use this command to open chrome browser
```shell
$ chromep
```

#### Open Chrome Browser and Find a String
Use this command to open chrome browser
```shell
$ chromef 'how to dev'
```

#### Open Chrome Browser and Start any Page
Use this command to open chrome browser
```shell
$ chromeu 'github.com'
```

#### Open NetBeans
You can open NetBeans IDE typing
```shell
$ netbeans
```

### Licence

MIT © [Willian Keller](https://github.com/williankeller/)