「ラズパイ3 インストール」の次。
/etc/下にgit入れておく。
自分のメモなので対して中身ないです。
Gitインストール
sudo apt-get install git
→更新なしだった。
Git初期化
cd /etc
sudo git init
Gitに自分が誰か教える
sudo git config --global user.email "natacom@example.com"
sudo git config --global user.name "natacom"
最初のコミットは意味のない空のものを入れておく
@NorsteinBekklerさんのGitの最初のコミットは空コミットにしように倣ってそうする。
現状をコミットする。
sudo git add .
sudo git commit -m "commit all"