This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias gitlog="git log --graph --pretty=format:'%C(red)%h%Creset -%C(yellow)%d%Creset %s %C(green)(%cr) %C(yellow)<%an>%Creset'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Colors in terminal | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxCxDxBxegedabagacad | |
| export COLOR_NC='\e[0m' # No Color | |
| export COLOR_WHITE='\e[1;37m' | |
| export COLOR_BLACK='\e[0;30m' | |
| export COLOR_BLUE='\e[0;34m' | |
| export COLOR_LIGHT_BLUE='\e[1;34m' | |
| export COLOR_GREEN='\e[0;32m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax enable | |
| colorscheme badwolf " https://github.com/sjl/badwolf | |
| set number | |
| set tabstop=4 " number of visual spaces per TAB | |
| set softtabstop=4 " number of spaces in tab when editing | |
| set expandtab " tabs are spaces | |
| set autoindent | |
| set copyindent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| parameter=$1 | |
| sqlplus= # Path to SQLPlus | |
| username= # DB username | |
| password= # DB password | |
| db= # DB name | |
| SQL=" | |
| UPDATE some_table |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stages: | |
| - deploy | |
| - test | |
| pages: | |
| stage: deploy | |
| script: | |
| - scripts/move-content-to-public.sh | |
| artifacts: | |
| paths: |