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
In three steps, you can clean up your repository and make sure your ignored items are indeed ignored: | |
$ git rm -r --cached . | |
$ git add . | |
$ git commit -m "Clean up ignored 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
# Need to authorized with root user(sudo su) to mysql -u root | |
GRANT ALL PRIVILEGES ON `tenant%`.* TO 'test_proagent'@'%' WITH GRANT OPTION; | |
#witch tenant is prefix of databases and test_proagent is user name |
NewerOlder