0
0

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 1 year has passed since last update.

Gitの構造

Last updated at Posted at 2022-04-24

・Gitの構造

●Gitを構成する3つのエリア
①ワークツリー
=>ファイルを作成、変更するエリア
②ステージ
=>コミットする変更を準備するエリア
③(ローカル、リモート)リポジトリ
=>スナップショット(データ)を記録するエリア

●スナップショットを記録する流れ
①「Git init」でローカルリポジトリを作成
②保存するファイルの作成
③「Git add」コマンドでリポジトリに圧縮ファイル、ステージにインデックスを保存
④「Git commit」コマンドでリポジトリにツリーとコミットを保存
⑤「git remote add origin リモートリポジトリのURL」コマンドでリモートリポジトリを新規作成
⑥「git push (-u) origin master」コマンドでリモートリポジトリへプッシュ
 ※初めてプッシュするときは「-u」オプションを付ける

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?