2020-08-10から1日間の記事一覧

Gitの使い方

本番環境Git $ cd ~/ $ mkdir local_git $ cd local_git $ git init $ touch test.txt $ git add test.txt $ git commit -m 'first commit'更新管理用Gitの作成 $ cd ~/ $ mkdir remote_git $ cd remote_git $ git clone --bare ~/local_git/ .本番環境Git $…