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 de tag | |
git tag -d X.Y.Z | |
Create again or create the hotfix / feature again. |
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
Just run | |
$ chmod 644 /usr/local/etc/redis.conf |
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
To fix the following error on Angular | |
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime | |
just run this command: | |
npm rebuild node-sass |
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
After the last updated to MacOS CATALINA mysql stopped working properly showing the following message: Too many open files. | |
The only command the fixed this is the following one: | |
ulimit -S -n 2048 |
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
brew uninstall --ignore-dependencies node icu4c | |
brew install node | |
brew link --overwrite node |
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
$ pecl install xdebug | |
$ vim /usr/local/etc/php/7.2/php.ini | |
Remove the line | |
zend_extension=xdebug.so | |
$ vim /usr/local/etc/php/7.4/conf.d/ext-xdebug.ini | |
Add the line: | |
zend_extension="/usr/local/Cellar/php/7.4.4/pecl/20190902/xdebug.so |
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
brew unlink git-flow | |
brew install git-flow-avh --HEAD | |
git config gitflow.multi-hotfix true | |
git config --get gitflow.multi-hotfix | |
git flow hotfix start my_hotfix_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
# Add the no-cache-dir to pip command: | |
pip install nameOfPacket --no-cache-dir |
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
$ brew update | |
$ brew upgrade | |
$ brew cleanup |
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
# To fix the problem, just run | |
xcode-select --install |