#Oh My Zsh - Git Cheat Sheet
g – git
gst – git status
gl – git pull
gup – git pull --rebase
#Oh My Zsh - Git Cheat Sheet
g – git
gst – git status
gl – git pull
gup – git pull --rebase
| function forceDownload(href) { | |
| var anchor = document.createElement('a'); | |
| anchor.href = href; | |
| anchor.download = href; | |
| document.body.appendChild(anchor); | |
| anchor.click(); | |
| } |