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.

GitHubのリポジトリを追加からPushまで

Posted at

前書き

本記事は個人のメモ用です。

何回も手順を間違ったので、毎回検索して作業するのも面倒になってきたから、メモを残すことにしました。

はじめに

GitHubのサイトからリポジトリを作成済みを前提に書いています。

まだ作成してない場合は先にGitHubのウェブサイトにアクセスして、リポジトリの新規作成を行って下さい。

ここでは my-git-practice とします。

1.名前とメールアドレスを登録する

初めてGitHubにアクセスする端末やリセットした端末には git config を実行し、名前とメールアドレスを登録します。

bash
ユーザー名を登録
git config --global user.name "User"
メールアドレスを登録
git config --global user.email "User@sample.com"

登録した名前とメールアドレスは後ほど登録するリポジトリに公開されます。

登録した名前とメールアドレスの確認は git config --global -l で確認出来ます。

bash
$ git config --global -l
$ user.name=User
$ user.email=User@sample.com

2.初期化

プロジェクトのディレクトリ下で git init を実行する

bash
$ git init
  hint: Using 'master' as the name for the initial branch. This default branch name
  hint: is subject to change. To configure the initial branch name to use in all
  hint: of your new repositories, which will suppress this warning, call:
  hint: 
  hint:   git config --global init.defaultBranch <name>
  hint: 
  hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
  hint: 'development'. The just-created branch can be renamed via this command:
  hint: 
  hint:   git branch -m <name>
  Initialized empty Git repository in /home/kibwwen/my-git-practice/.git/

3.リポジトリにファイルの追加

bash
$ git add .
又は
$ git add ファイル名

4.最初のコミット

bash
$ git commit -m "first commit"
git commit -m "コミットのメッセージ"

5.ブランチの作成と切り替え

bash
$ git branch -M main

6.リモート先の追加

bash
$ git remote add origin git@github.com:アカウント名/my-git-practice.git

7.GitHubにプッシュする

bash
$ git push origin main

プッシュ出来ない場合はSSHが設定したか、パスワード間違ってませんかを確認して下さい。

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?