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

プロジェクト開発におけるgitの初期設定

Last updated at Posted at 2021-04-05

git怖い!

「gitは怖くないよ!」という記事は知見者が書かれていて、無知な私にとっては本当に怖いので、知識がない私向けの、本当に怖くない備忘録
とりあえず下記をやっておけばなんとかなる

前提

  • githubのアカウントがある

リモートリポジトリの準備

1.githubで新規リポジトリ作成

  • 左上に「Repositories」と「NEW」があるので、「NEW」をぽちる
  • Repository nameを入力
  • Privateを選択
  • 最下部Create Repositoryをぽちる

ローカルリポジトリの準備

1.作業ディレクトリを初期化

git init

2.適当なファイルを作成

私はいつだってindex.php

3.作成したファイルをインデックスに追加

git add index.php

4.インデックスに追加されたファイルをコミット

git commit -m "git init"

5.リモートリポジトリの情報を追加

git remote add origin https://github.com/user-name/fuga.git

ローカルリポジトリ→リモートリポジトリへプッシュ

git push origin master
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?