Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
These rules are adopted from the AngularJS commit conventions.
Magic words:
psql -U postgresSome interesting flags (to see all, use -h or --help depending on your psql version):
-E: will describe the underlaying queries of the \ commands (cool for learning!)-l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| function! ToggleGStatus() | |
| if buflisted(bufname('.git/index')) | |
| bd .git/index | |
| else | |
| Gstatus | |
| endif | |
| endfunction | |
| command ToggleGStatus :call ToggleGStatus() | |
| nmap <F3> :ToggleGStatus<CR> |
| <?php | |
| if(!isset($argv[1])){ | |
| echo "Usage: ".$argv[0]." (number of iterations)\n"; | |
| exit(1); | |
| } | |
| /** | |
| * Arrays to check | |
| */ | |
| $tests = array( |
| // My Git worflow, when patching external projects | |
| // Copyright (C) 2011 Olivier Mengué. All rights reserved. | |
| // dot -Tpng -o git-patching-workflow.png git-patching-workflow.dot | |
| digraph { | |
| find_repo [ label="Find an interesting project on GitHub (or another Git repository)"]; | |
| use [ label="Use, test..." ]; | |
| bug_idea [ label="Find a bug or idea for a feature" ]; |