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
- Host: GitHub
- URL: https://github.com/williankeller/bash-settings-ever
- Owner: williankeller
- License: mit
- Created: 2015-10-26T16:53:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-09-24T19:43:33.000Z (9 months ago)
- Last Synced: 2025-09-24T21:29:29.631Z (9 months ago)
- Topics: bash, bash-script, bashrc, git, mysql, terminal
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)