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
| # Initialize | |
| # Go project folder (empty) and initialize as git | |
| git init | |
| # Fetch tree | |
| git remote add -f origin http://github.com/vrandkode/scratch.git | |
| # Enable sparse-checkout and configure by listing your desired sub-trees | |
| git config core.sparsecheckout true | |
| echo "path/to/dir" >> .git/info/sparse-checkout |
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
| $ sudo yum group install "Development Tools" -y \ | |
| sudo yum install tcl | |
| $ wget http://download.redis.io/releases/redis-3.0.7.tar.gz | |
| $ tar -xvf redis-3.0.7.tar.gz | |
| $ cd redis-3.0.7/deps | |
| $ make hiredis lua jemalloc linenoise | |
| $ cd ../src | |
| $ make && make test | |
| $ sudo make install |
NewerOlder