0
2

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 と GitHub のセットアップ

Posted at

前提

  • Git for Windows のインストール

概要

  • github.com にアカウント登録
  • (推奨) 2段階認証(Two-factor authentication | 2FA)の設定
  • github のユーザー情報を Git に登録
  • Git と github の疎通確認

github.comにアカウント登録

手順
  1. github にアカウントを作成

(推奨) 2段階認証(Two-factor authentication | 2FA)の設定

詳細は公式ページ 2 要素認証を利用した GitHub へのアクセス | GitHub Docs を参照。

手順
  1. ページ右上の ▼ アイコンを押下。表示されるメニューから[Settings]を選択。
    image.png
  2. [Password and authentication]を選択。
    image.png
  3. Two-factor authentication まで移動し、[Enable two-factor authentication]を押下。
    image.png
  4. アカウントのパスワードを入力
    image.png
  5. 遷移したページのナビゲーションに従い設定。
    image.png

GitHub のアカウントを Git に登録

  1. ユーザー名を確認
    image.png

  2. プライマリメールアドレスの確認

    1. [Emails]に移動
      image.png
    2. [Primary email address]に記載されてるアドレスをコピーしておく。
      image.png
  3. gitbashを起動して以下コマンドを入力

gitbash
$ git config --global user.email "<プライマリメールアドレス>"
$ git config --global user.name "<ユーザー名>"
  1. %HOMEPATH%に.gitconfig が作成される
%HOMEPATH%/.gitconfig
[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true
[user]
	email = <プライマリメールアドレス>
	name = <ユーザー名>

Githubとの疎通確認

手順
  1. github.com にアクセスする

  2. [New] を押下
    image.png

  3. Repository name* を入力。
    image.png

  4. [Create repository] を押下
    image.png

  5. リモートリポジトリが作成される
    image.png

  6. リモートリポジトリのURL[http://github.com/***.git] をコピーしておく。

  7. gitbash を起動して、以下のコマンドを入力していく。

    gitbash
    # %HOMEPATH% 直下に app/my-first-app ディレクトリを作成
    # ※サブディレクトリ名はリモートリポジトリ名にする
    $ mkdir -p app/my-first-app
    
    # 作成したディレクトリに移動
    $ cd app/my-first-app
    
    # ディレクトリ内に README.md ファイルを作成
    $ touch README.md
    
    # README.md にテキストを書き出す
    $ echo "# my-first-app" >> README.md
    
    # ローカルリポジトリの初期化
    $ git init
    
    # ステージングする
    $ git add README.md
    
    # コミットする
    $ git commit -m "My first commit"
    
    # main ブランチに移動
    $ git branch -M main
    
    # リモートリポジトリに追加
    $ git remote add origin <リモートリポジトリのURL>
    
    # リモートリポジトリにプッシュ
    git push -u origin main
    
  8. github.comにアクセス

  9. リモートリポジトリを開く
    image.png

  10. こん感じにプッシュされてればOK
    image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?