Composer and Git Command Cheat Sheet

  composer install –ignore-platform-reqs   Commit all files (new install): git add –all git commit -am “[commit message]”   inspect all changes: git add . //stage all files changes up to that point git status //see new / modified / deleted files – splits in two sections –  staged for changes vs not stage for…