ブログ
WordPress・PHP・CSS・JavaScript まわりの実装メモ。詰まったところと解決したコードをそのまま残しています。
10件中 1〜10件を表示
過去のコミットに一時的に戻る方法
git checkout [コミット名] git log –onelineで7文字の半角英数字の箇所をコミット名に入力。
git remoteでgithubと連携
git remote add origin git@github.com:xxx_id/xxx.git git push -u origin main
git remote名
git remote add origin git@github.com:count/name.git git push -u origin master
git config
本番でのpull時に設定 git config –list git config –global user.email “sample@icloud.com” git config –global user.nam
