This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- stop | |
| sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist | |
| -- start | |
| sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @font-face { | |
| font-family: 'wf_SegoeUILight'; | |
| src: url('http://i.s-microsoft.com/fonts/Segoe-UI/East-European/Light/latest.eot'); | |
| src: url('http://i.s-microsoft.com/fonts/Segoe-UI/East-European/Light/latest.eot?#iefix') format('embedded-opentype'), | |
| url('http://i.s-microsoft.com/fonts/Segoe-UI/East-European/Light/latest.woff') format('woff'), | |
| url('http://i.s-microsoft.com/fonts/Segoe-UI/East-European/Light/latest.ttf') format('truetype'), | |
| url('http://i.s-microsoft.com/fonts/Segoe-UI/East-European/Light/latest.svg#web') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| A --- B --- C --- D | |
| \ | |
| E --- F --- G | |
| A --- B --- E --- F --- G --- (M) | |
| A --- B --- E --- F --- G --- (M) --- H --- I |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| phpcs <dir|file> -p -s --sniffs=Generic.Metrics.CyclomaticComplexity --standard=Squiz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nmap -sT -O localhost |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -- simple way | |
| git filter-branch -f --commit-filter ' | |
| GIT_AUTHOR_EMAIL="new.email@gmail.com"; | |
| GIT_COMMITTER_EMAIL="new.email@gmail.com"; | |
| git commit-tree "$@"; | |
| ' HEAD | |
| # -- with conditionals | |
| git filter-branch --commit-filter ' | |
| if [ "$GIT_AUTHOR_EMAIL" = "<old.email@gmail.com>" ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * you nedd enable some access, and create a spreedsheat called 'contact-data', before it | |
| * the script need to be run on google script - https://script.google.com | |
| */ | |
| function contactLabelChange() | |
| { | |
| backupContacts(); | |
| var contacts = getMyContacts(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Agudo (É): Option + E + a letra desejada | |
| C Cedilha (Ç): Option + C = Ç | |
| Til (Ã): Option + N + a letra desejada = Ã , Õ | |
| Circunflexo (Ê): Option + I + a letra desejada = Ê, Ô | |
| Trema (Ü): Option + U + a letra desejada Ü |
OlderNewer