1
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.

Webの勉強はじめてみた その18~Git編②~

Posted at

N予備校「プログラミング入門Webアプリ」を受講しています。
第2章16,17節を受講しました。

ブランチ

:::note ある時点のソースコードを分岐させて開発をしたもの 本流となるブランチはmaster(またはmain)と呼ばれる :::

git branch
現在のブランチを確認する。

git checkout gh-pages
現在のブランチを以下(gh-pages: GitHub Pages)に変更する。

checkout : ブランチを切り替え、使用できる状況にすることをチェックアウトという
gh-pages : GitHub Pages に自動的にWebページとしてリポジトリ内容が公開される

git push origin gh-pages
origin(リモートリポジトリ)にgh-pagesブランチをpushする。

git merge gh-pages
マージコミット: 他のブランチから変更を取り込む。

その他コマンド

`git commit -am "メッセージ"` 既にリポジトリに登録したすべてのファイルの変更をインデックスに加えて、コメントを付けてコミットする

git diff
現在のブランチとの差分を確認する。
コンフリクトが起きた時など。

まとめ

一通りgitの使い方を学習しました。 とにかく自分に馴染ませるために色々やっていこうと思います。 第二章はこれで終わり、次章からNode.jsをやっていくみたいなので楽しみです。
1
0
2

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
1
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?