0
1

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 3 years have passed since last update.

Gitで開発環境を整えてみた

Posted at
  1. ローカルにワーキングディレクトリを作る

mkdir [ワーキングディレクトリ名]

  1. ワーキングディレクトリに移動する

cd [ワーキングディレクトリ名]

  1. ワーキングディレクトリを初期化する

git init

  1. gitで紐づけたいリモートリポジトリを作成する。この時にREADMEファイルは作らずに、後から作成する。
    git-example1.png

  2. gitで作成した新規のリモートリポジトリのURLを、以下のコマンドに貼り付ける

git remote add origin [新規のリモートリポジトリのURL]
git-example2.png

  1. ワーキングディレクトリにリモートリポジトリに作成したい、ファイルを作成する

  2. 作成したファイルをステージにaddする

git add '[作成したファイル]'

  1. 作成したファイルをcommitする

git commit -m '[付けたいコメント]'

  1. 作成したファイルをpushする

git push origin main

これでデフォルトのリモートリポジトリ(ここではmain)に対象のファイルが追加される

補足

  1. 対象となるローカルのワーキングディレクトリに、リモートブランチと紐づけたいディレクトリ作成する。新たなワーキングディレクトリの名前は、これから紐づけるリモートブランチ名と一緒だとわかりやすい。

mkdir [リモートブランチ名]

  1. 作成したワーキングディレクトリに移動

cd [ワーキングディレクトリ名]

  1. ローカルのワーキングディレクトリに、新たにリモートブランチを作る

git checkout -b [リモートブランチ名]

  1. ワーキングディレクトリにリモートブランチに作成したい、ファイルを作成する

  2. 作成したファイルをステージにaddする

git add '[作成したファイル]'

  1. 作成したファイルをcommitする

git commit -m '[付けたいコメント]'

  1. 作成したファイルをpushする

git push origin [リモートブランチ名]

これでリモートブランチと、そこに新規で作ったファイルが追加される

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?