Git
A collection of helpful git commands when working in a team of developers
To check your repository's remote URL:
git config --get remote.origin.url
Renaming branches
Renaming a separate branch:
git branch -m <old_name> <new_name>
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
A collection of helpful git commands when working in a team of developers
To check your repository's remote URL:
git config --get remote.origin.url
Renaming a separate branch:
git branch -m <old_name> <new_name>
{ | |
// Workbench | |
"workbench.settings.editor": "json", | |
"workbench.activityBar.visible": false, | |
"workbench.colorTheme": "Quiet Light", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.sideBar.location": "right", | |
"workbench.iconTheme": "vscode-great-icons", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#001A5E", |
$pwd
$ cd ~
$ pwd
# PostgreSQL. Versions 9.3 and up are supported. | |
# | |
# Install the pg driver: | |
# gem install pg | |
# On macOS with Homebrew: | |
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config | |
# On macOS with MacPorts: | |
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config | |
# On Windows: | |
# gem install pg |