Skip to content

Instantly share code, notes, and snippets.

View viethung0o0's full-sized avatar

Phan Viet Hung viethung0o0

  • AsianTech inc.
  • Viet Nam
View GitHub Profile
@M1nhNV
M1nhNV / commit-code.sh
Last active January 24, 2024 02:04
commit code shell script
function CommitCode {
git add -A
git commit -m "$1"
echo -e "$1 ====> \033[32m commit succeed \033[m"
CURRENT_BRANCH=$2
TARGET_BRANCH=$3
DEVELOP_BRANCH='develop'
@GhazanfarMir
GhazanfarMir / Instructions.sh
Last active December 22, 2024 01:12
Install PHP7.2 NGINX and PHP7.2-FPM on Ubuntu 16.04
########## Install NGINX ##############
# Install software-properties-common package to give us add-apt-repository package
sudo apt-get install -y software-properties-common
# Install latest nginx version from community maintained ppa
sudo add-apt-repository ppa:nginx/stable
# Update packages after adding ppa