Git plumbing Commands
Check Object Type
git cat-file -t 47ef
Pretty Print Object Content
git cat-file -p 47ef
git cat-file -t 47ef
git cat-file -p 47ef
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>William D. Neumann</string> | |
<key>name</key> | |
<string>Slush & Poppies</string> | |
<key>settings</key> | |
<array> |
<?php | |
class Database | |
{ | |
/** | |
* Storage | |
* @var array | |
*/ | |
protected $database = array(); |
[ | |
{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "eol", "extend": false} } | |
] |
{ | |
"color_scheme": "Packages/Babel/Next.tmTheme", | |
"draw_indent_guides": false, | |
"folder_exclude_patterns": | |
[ | |
"**/node_modules", | |
"**/bower_components", | |
"**/.git", | |
".sass-cache", | |
"public" |
# https://coderwall.com/p/pn8f0g/show-your-git-status-and-branch-in-color-at-the-command-prompt | |
COLOR_RED="\033[0;31m" | |
COLOR_YELLOW="\033[0;33m" | |
COLOR_GREEN="\033[0;32m" | |
COLOR_OCHRE="\033[38;5;95m" | |
COLOR_BLUE="\033[0;34m" | |
COLOR_WHITE="\033[0;37m" | |
COLOR_RESET="\033[0m" |
http_proxy=http://www-proxy.us.oracle.com:80 | |
https_proxy=https://www-proxy.us.oracle.com:443 | |
proxy=http://www-proxy.us.oracle.com:80 | |
strict-ssl=false | |
registry=http://registry.npmjs.org |
[ | |
{ "key": "ctrl+`", "command": "workbench.action.terminal.focus"}, | |
{ "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"} | |
] |
alias gs='git status'; | |
alias gd='git diff'; | |
alias gpm='git push origin master'; | |
alias b='npm run build'; | |
alias t='npm test'; | |
alias sd='npm run start.dev'; | |
alias vscode='/home/anoop/.local/share/umake/ide/visual-studio-code/bin/code'; |
{ | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"workbench.colorCustomizations": { | |
"[Slush & Poppies+]": { | |
"editor.foreground": "#101010", | |
"editor.background": "#f1f1f1", | |
"sideBar.background": "#f1f1f1" | |
} | |
}, |