In your command-line run the following commands:
brew doctorbrew update
| 1. $ sudo vim /etc/pam.d/sudo | |
| 2. add this line on top of the content | |
| auth sufficient pam_tid.so | |
| 3. | |
| :w! | |
| :q | |
| 4. works now for Terminal, but for iTerm 2, go to top menu |
| included: | |
| excluded: | |
| - Pods | |
| - Cartography | |
| - build | |
| disabled_rules: # rule identifiers to exclude from running | |
| # - cyclomatic_complexity | |
| - trailing_whitespace |
In your command-line run the following commands:
brew doctorbrew updateIt's important to note that running this reset will drop any existing data you have in the application
heroku restartheroku pg:reset DATABASE (no need to change the DATABASE)heroku run rake db:migrateheroku run rake db:seed (if you have seed)One liner
| # 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 |