Author: Ken Favors
Generating an SSH Key Pair For GitLab
https://gitlab.com/help/ssh/README 1. ssh into virtual machine $ vagrant ssh 2. From the command line: $ ssh-keygen -t rsa -C “GitLab”…
Pulling GitLab Code To DigitalOcean Server
https://premium.wpmudev.org/blog/improve-wordpress-development-workflow-local-server/ Create the empty Git repository on the production server 4. From your local command line create an ssh connection…
Using Git In Your Workflow With GitLab
Command line instructions If you already have files you can push them using command line instructions below. First, ssh into…
How To Install The Latest Version Of Git On Ubuntu
http://stackoverflow.com/questions/19109542/installing-latest-version-of-git-in-ubuntu $ sudo add-apt-repository ppa:git-core/ppa $ sudo apt-get update $ sudo apt-get install git
Using Git In Your Workflow
https://www.git-tower.com/learn/git/ebook/en/command-line/basics/working-on-your-project#start https://www.git-tower.com/blog/git-cheat-sheet/ to check file changes: $ git status Commonly used commands. 3 main categories: Changes not staged for commit…
How To Install PHP 7.0
http://askubuntu.com/questions/705880/how-to-install-php-7 also for error “ZipArchive Library is missing or disabled”: https://www.digitalocean.com/community/questions/php-7-0-ziparchive-library-is-missing-or-disabled sudo apt-get install php7.0-cli php7.0-common libapache2-mod-php7.0 php7.0 php7.0-mysql php7.0-fpm…