git checkout --orphan future-master
git add -A # Add all files and commit them
git commit
git branch -D master # Deletes the master branch
git branch -m master # Rename the current branch to master
git push -f origin master # Force push master branch to github
git gc --aggressive --prune=all # remove the old files
This file contains 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
msgid "File extensions" | |
msgstr "副檔名" | |
msgid "Taxonomy settings" | |
msgstr "分類設定" | |
msgid "Cacheable" | |
msgstr "可快取" | |
msgid "Processor" |
This file contains 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
function leadingZero(n, nod) { | |
if ((nod < 1) || (n.toString().length >= nod)) { | |
return n.toString(); | |
} else { | |
return ('0'.toString().repeat(nod)+n).slice(-nod); | |
} | |
} |
This file contains 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
# Recursively Remove ._ ( dot-underscore ) files | |
### osx | |
dot_clean -v . | |
### osx/linux | |
find . -name '._*' -type f -print -delete | |
# Recursively Remove .DS_Store | |
find . -name '.DS_Store' -type f -print -delete |
This file contains 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
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
This file contains 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
# Block Adobe Activation | |
127.0.0.1 hl2rcv.adobe.com | |
127.0.0.1 t3dns.adobe.com | |
127.0.0.1 3dns-1.adobe.com | |
127.0.0.1 3dns-2.adobe.com | |
127.0.0.1 3dns-3.adobe.com | |
127.0.0.1 3dns-4.adobe.com | |
127.0.0.1 activate.adobe.com | |
127.0.0.1 activate-sea.adobe.com | |
127.0.0.1 activate-sjc0.adobe.com |
This file contains 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
" Use spaces instead of tabs | |
set expandtab | |
" Be smart when using tabkey | |
set smarttab | |
" 1 tab == 4 spaces | |
set shiftwidth=4 | |
set tabstop=4 |
This file contains 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
update drupal core | |
rm -rf core vendor | |
rm -f *.* .[a-z]* | |
cp -R core vendor /path/to/your/drupal/directory | |
cp *.* .[a-z]* /path/to/your/drupal/directory | |
vi settings.php | |
$settings['update_free_access'] = FALSE; |
This file contains 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
# This hosts file is brought to you by Dan Pollock and can be found at | |
# http://someonewhocares.org/hosts/ | |
# You are free to copy and distribute this file for non-commercial uses, | |
# as long the original URL and attribution is included. | |
#<localhost> | |
127.0.0.1 localhost | |
127.0.0.1 localhost.localdomain | |
255.255.255.255 broadcasthost | |
::1 localhost |
- Create or find a gist that you own.
- Clone your gist (replace
<hash>
with your gist's hash):# with ssh git clone [email protected]:<hash>.git mygist # with https
git clone https://gist.github.com/.git mygist
OlderNewer