Homebrew
How To
Homebrew is a package management system for OS X. You can read more about it here, or simply run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
to install it.
# (c) 2020 Humu | |
# MIT License | |
from typing import Any | |
import github | |
AUTOMERGE_LABEL_NAME = 'automerge' |
body { background: #222; color: #e6e6e6; } | |
a { color: #949494; } | |
a:link, a:visited { color: #949494; } | |
a:hover, a:active, a:focus { color: #c7c7c7; } | |
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; } |
body { background: #252835; color: #e6e6e6; } | |
a { color: #61e3f1; } | |
a:link, a:visited { color: #61e3f1; } | |
a:hover, a:active, a:focus { color: #c7c7c7; } | |
hr { border-bottom: 1px solid #4f5367; border-top: 1px solid #252835; } |
gist -d "Description for the gist" |
➜ weather git:(master) ✗ weather bombay | |
It's -12.13 degrees Celsius in Bombay! | |
➜ weather git:(master) ✗ weather mumbai | |
It's 28 degrees Celsius in Mumbai! |
remote: | |
remote: The private project namespace/nonexistent-project was created. | |
remote: | |
remote: To configure the remote, run: | |
remote: git remote add origin https://gitlab.example.com/namespace/nonexistent-project.git | |
remote: | |
remote: To view the project, visit: | |
remote: https://gitlab.example.com/namespace/nonexistent-project | |
remote: |
## Git push using SSH | |
git push --set-upstream git@gitlab.example.com:namespace/nonexistent-project.git master | |
## Git push using HTTP | |
git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master |
Homebrew is a package management system for OS X. You can read more about it here, or simply run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
to install it.