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?

初めてのGitHub 第1回

Last updated at Posted at 2024-08-12

GitHubとは

(1)フォルダ内のファイルの変更履歴を保存することができる。

(2)いつ、だれが、どのファイルのどの箇所を、どういった目的で変更したか管理できる。

リポジトリ

・過去のファイルを引っ張ってこれる。記録されている貯蔵庫。
プロジェクトごとにリポジトリを作成し、その中でコードを管理する。
コードのバージョン履歴や、コミット、ブランチが保存される。

ローカルリポジトリとリモートリポジトリ

・ローカルリポジトリ
自身のPC上に存在するリポジトリで、ローカルリポジトリ上にファイルを編集したら、保存しておかなければいけない。

・リモートリポジトリ
WebであるGitHubサーバー上に存在するリポジトリ

ステージ

  1. 変更のあったファイルの中からコミットするためのファイルを選ぶ

コミット

  1. 変更にメッセージなどを添えて保存する
  2. セーブポイント
  3. コミット間はいつでも移動できる

ブランチ

・ブランチは並行世界
プロジェクトの異なるバージョンや新機能を並行して開発するために使用する。

参考資料

わかばちゃんと学ぶGit使い方入門

Schoo

Git超入門

Youtube

gitの使い方 基礎知識 - SourceTreeを利用したGitの基本操作

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?