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 2020-07-30

概要

使い始めの頃と比較して少しずつ慣れてはきたが、毎回リモートリポジトリの作成とpushまでで手が止まるので自分なりのメモ。
毎度ググるの面倒くさいですからね。

リモートリポジトリもローカルリポジトリも空の場合

①リモートリポジトリの作成

GitHub>New Repositories

  • 新規でリモートリポジトリを作成。
  • 作成したリポジトリからURL取得。

詳しくはこれ参照。
https://qiita.com/mst_141/items/23828bef5cf6fc68f50d

②ローカルリポジトリの作成

$ git init

③インデックスに追加

$ git add <ファイル/フォルダ>

③ローカルリポジトリに登録
(個人的にターミナルからコメントできる方が早くて好き。)

$ git commit -m "<メッセージ>"

④リモートリポジトリにpush
次回以降「git push」だけで済むように「-u」オプション付き。

$ git remote add origin <URL>
$ git push -u origin master

リモートリポジトリを新たにローカルまで持ってくる場合

リモートリポジトリからURL取得してclone

$ git clone <リポジトリURL>

まとめ

ブランチ切り替えやリベースなんかも使う機会が多発する頃に再度アウトプット予定。
言語も楽しいけどチーム開発ツールで知見増やすのも楽しい。

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?