This is a list of useful commands for git for fast search and ops developers, enjoy and comments for suggest all welcomes :D
Public repo .tar for download versions: https://www.kernel.org/pub/software/scm/git/
This is a list of useful commands for git for fast search and ops developers, enjoy and comments for suggest all welcomes :D
Public repo .tar for download versions: https://www.kernel.org/pub/software/scm/git/
#!/usr/bin/env bash | |
# Install dependencies | |
yum update -y | |
yum install -y gcc apr-devel apr-util-devel openssl-devel pcre-devel libxml2-devel libcurl-devel libpng-devel libjpeg-devel libXpm-devel freetype-devel libicu-devel | |
# Or just make your own installation for apr | |
mkdir setup && cd setup | |
wget <url_to_apache>.tar.gz | |
tar -zxvf <apache>.tar.gz |
LOCK FILE +, UNLOCK - chattr -i /etc/httpd/conf/httpd.conf | |
NETWORKING | |
ifconfig eth0 up | |
history | grep ifconfig | |
ifconfig eth0:1 <ip> | |
tracert <domain> | |
watch "echo stats | nc 127.0.0.1 11211" | |
dig <domain> ANY +noall +answer | |
netstat -a [listening ports] |
COMPOSER | |
======== | |
INSTALL composer install | |
--ignore-platform-reqs | |
UPDATE composer update | |
DUMP composer dump-autoload [--optimize] |