Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 611 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 611 Bytes

Git Workshop

Description

Git の学習用レポジトリです

Git の基本操作

ステージング・エリアにファイルを追加

git add <ファイルへの相対パス>

ステージング・エリアの中身を、ローカル・レポジトリに保存

git commit

リモート・レポジトリに保存

git push <リモートRepoの場所> <ブランチ名>

監査対象の設定

  • .gitignore -> 保存したくないものを指定 (バイナリデータ、パスワードなど)
  • .gitkeep -> 保存したい空のディレクトリ (フォルダ) を指定する