前提
- Git for Windows のインストール
概要
- github.com にアカウント登録
- (推奨) 2段階認証(Two-factor authentication | 2FA)の設定
- github のユーザー情報を Git に登録
- Git と github の疎通確認
github.comにアカウント登録
手順
- github にアカウントを作成
(推奨) 2段階認証(Two-factor authentication | 2FA)の設定
詳細は公式ページ 2 要素認証を利用した GitHub へのアクセス | GitHub Docs を参照。
手順
- ページ右上の ▼ アイコンを押下。表示されるメニューから[Settings]を選択。
- [Password and authentication]を選択。
- Two-factor authentication まで移動し、[Enable two-factor authentication]を押下。
- アカウントのパスワードを入力
- 遷移したページのナビゲーションに従い設定。
GitHub のアカウントを Git に登録
-
プライマリメールアドレスの確認
-
gitbashを起動して以下コマンドを入力
gitbash
$ git config --global user.email "<プライマリメールアドレス>"
$ git config --global user.name "<ユーザー名>"
- %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との疎通確認
手順
-
github.com にアクセスする
-
リモートリポジトリのURL[http://github.com/***.git] をコピーしておく。
-
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
-
github.comにアクセス
了