今日の障害

XCodeでPod Framework のスクリプトが落ちる場合
https://zenn.dev/ichii731/articles/5be89cdae485e5

if [ -L “${source}” ]; then
echo “Symlinked…”
旧 source=”$(readlink “${source}”)”
新 source=”$(readlink -f “${source}”)”
fi

VSCodeでGitのログインを毎回聞かれる時
https://qiita.com/onewing-angel/items/9c0b9db4e1712f12625b
シェルで
git config credential.helper store

Leave a Reply