Tag: web applications
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…
How To Install LEMP Locally On Ubuntu 16.04
If using Vagrant: Setup Vagrant replace project with any name you wish. $ mkdir project $ cd project $ vagrant…
How To Use Git – Initial Steps
Great and simple resource: https://www.git-tower.com/learn/git/ebook/en/command-line/introduction#start also: https://www.smashingmagazine.com/2015/07/development-to-deployment-workflow/ similar examples as above: https://www.digitalocean.com/community/tutorials/how-to-use-git-effectively **How To Set Up Automatic Deployment with Git…
How To Set Up A Text Editor To Work With Git On Windows
http://stackoverflow.com/questions/10564/how-can-i-set-up-an-editor-to-work-with-git-on-windows On 32 bit OS: $ git config –global core.editor “‘C:/Program Files/Notepad++/notepad++.exe’ -multiInst -notabbar -nosession -noPlugin” On 64 bit OS:…