Version Control your .bash_aliases file using:
- defunkt/gist
- Github Gists
- Bash aliases
I'll use a sample .bash_aliases file for the tut:
# ~/.bash_aliases
| set wrap-lines = yes | |
| set line-graphics = utf-8 | |
| set split-view-width = 90% | |
| set main-view = line-number:no id:no date:relative-compact author:abbreviated commit-title:no,graph,refs=no,overflow=no | |
| set diff-view = line-number:no,interval=5 text:yes | |
| # Neonwolf Color Scheme for Tig | |
| # | |
| # Based mostly on the colors from the badwolf airline theme | |
| # |
| set wrap-lines = yes | |
| set line-graphics = utf-8 | |
| set split-view-width = 90% | |
| set main-view = line-number:no id:no date:relative-compact author:abbreviated commit-title:no,graph,refs=no,overflow=no | |
| set diff-view = line-number:no,interval=5 text:yes | |
| # Neonwolf Color Scheme for Tig | |
| # | |
| # Based mostly on the colors from the badwolf airline theme | |
| # |
| #!/bin/bash | |
| # lists the branches in order and lets you select | |
| # which one to checkout | |
| branches=( $(git for-each-ref refs/heads | cut -d '/' -f 3-) ) | |
| for i in "${!branches[@]}"; do | |
| echo "$i) ${branches[$i]}" | |
| done |
| {"lastUpload":"2022-02-15T20:42:50.224Z","extensionVersion":"v3.4.3"} |
| @function rem-calc($size) { | |
| $remSize: $size / 16; | |
| @return #{$remSize}rem; | |
| } |
| /* | |
| * This script converts API data from Backlog Syntax to Markdown. | |
| * It can also output to Markdown and JSON. | |
| */ | |
| // Lib Imports | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const chalk = require('chalk'); | |
| const readline = require('readline'); |
| This is some testing junks |
| .wixAdsdesktopWADBottom { visibility: hidden !important; display: none !important; } |
Version Control your .bash_aliases file using:
I'll use a sample .bash_aliases file for the tut:
# ~/.bash_aliases
| console.log("hi"); |