pacman -Syy
pacman -S openssh
pacman -S zsh # and setup with oh-my-zsh
Save this text as file named xxx.reg, and double-click it. Done.
| # https://git-scm.com/book/en/v2/Getting-Started-Installing-Git | |
| # compilre requirements. | |
| yum install dh-autoreconf curl-devel expat-devel gettext-devel \ | |
| openssl-devel perl-devel zlib-devel | |
| yum install asciidoc xmlto docbook2X getopt perl-ExtUtils-MakeMaker | |
| # do it. | |
| wget https://github.com/git/git/archive/v2.15.1.tar.gz | |
| tar xvf v2.15.1.tar.gz |
| CREATE TABLE `test` ( | |
| `i` int(255) NULL DEFAULT 0 | |
| ) | |
| ENGINE=InnoDB | |
| DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci | |
| SELECT | |
| t1.i as idx1, | |
| t2.i as idx2 |