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 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
| " 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 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
| # 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 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
| # 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 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
| msgid "File extensions" | |
| msgstr "副檔名" | |
| msgid "Taxonomy settings" | |
| msgstr "分類設定" | |
| msgid "Cacheable" | |
| msgstr "可快取" | |
| msgid "Processor" |
NewerOlder