/ lib / shell.sh
shell.sh
1  #!/bin/bash
2  
3  alias clone='rad clone'
4  alias pull='rad sync -f'
5  alias commit='git add . && git commit -m "$WORK" && git push rad'
6  alias list='rad ls'
7  alias init='git init && touch README.md && git add . && git commit -m "Created at `date`" && rad init'