14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ラズパイ3 gitインストール

Last updated at Posted at 2016-10-30

ラズパイ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"

14
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?