コマンド

Composer コマンド逆引き

Composer コマンド逆引きhttps://qiita.com/KEINOS/items/86a16b06af6e936a1841 // バージョンを指定してインストール$ composer require [vendor]/[package]:1.0.0 // インストールした場合の挙動を確認$ composer require illuminate/contracts --dry-run …

MySQLのコマンド備忘

MySQLhttps://www.sasukepg.jp/post-1038/ ユーザの確認SELECT host,user FROM mysql.user; パスワードの変更SET PASSWORD FOR usernonamae@"%"=PASSWORD('passwordmoji'); DBに接続mysql -h test-xxxxxrds-yyyymmdd.xxxxxxxxxxxxxxx.ap-northeast-1.rds.ama…

Git コマンド

gitコマンドチートシート - Qiita ブランチの確認 git branch ブランチの作成 git branch branchnonamae ブランチの切り替え git checkout buranchnonamae ブランチの削除 git branch -d branchnonamae https://qiita.com/hogeta_/items/33d2334c9b1919bd512…