https://github.com/zokis/dotfiles
dotfiles
https://github.com/zokis/dotfiles
Last synced: about 1 year ago
JSON representation
dotfiles
- Host: GitHub
- URL: https://github.com/zokis/dotfiles
- Owner: zokis
- Created: 2012-07-10T13:35:56.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2020-01-28T18:20:19.000Z (over 6 years ago)
- Last Synced: 2025-02-16T11:27:33.683Z (over 1 year ago)
- Language: Python
- Size: 11.2 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
dotfiles
========
### @zokis's dotfiles
This project is a collections of dotfiles forked from https://github.com/deniscostadsc/dotfiles . I used just on Ubuntu.
to download the project:
```bash
git clone https://github.com/zokis/dotfiles.git
```
or
https://github.com/zokis/dotfiles/archive/master.zip
###### install system applications:
```bash
cd dotfiles
sudo ./prepare_environment.sh
```
###### install the dotfiles
```bash
./install.sh
source ~/.bashrc
```
-----------
## Aliases:
### Bash Aliases
* rself='source ~/.bashrc'
* ls='ls --color=auto'
* grep='grep --color=auto'
* fgrep='fgrep --color=auto'
* egrep='egrep --color=auto'
* ll='ls -AhlF'
* la='ls -A'
* l='ls -CF'
### Git Aliases
* ga='git add'
* gA='git add .'
* gau='git add -u'
* gb='git branch'
* gc='git checkout'
* gcl='git clone'
* gct='git commit'
* gcm='gct -m'
* gcma='gct -am'
* gcv='gct -v'
* gd='git diff'
* gl='git log'
* glgol='gl --graph --decorate --pretty=oneline --abbrev-commit'
* glgola='gl --graph --decorate --pretty=oneline --abbrev-commit --all'
* gps='git push'
* gpl='git pull'
* gra='git remote add'
* grm='git rm'
* grr='git remote rm'
* gst='git status'
* gpsb='gps origin $(gitbranch)'
* gplb='gpl origin $(gitbranch)'
* gpsm='gps origin master'
* gplm='gpl origin master'
* gpso='gps origin'
* gplo='gpl origin'
### Python Django Aliases
* drs='python manage.py runserver'
* dtest='python manage.py test'
* dshell='python manage.py shell'
* ddump='python manage.py dumpdata'
* dload='python manage.py loaddata'
* dmigr='python manage.py migrate' # If the South is installed
---------------------
### git Branch on PS1
