10
8

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.

既存のプロジェクトをリモートリポジトリにpushするまで

Last updated at Posted at 2020-04-24

コピペ用

1, GitHubで空のリモートリポジトリを作成

2, ローカルリポジトリを作成

作業ディレクトリに移動

cd /dev/sample

Gitディレクトリを作成

git init

作業ディレクトリ内の全てのファイルをステージングエリアに追加

git add *

ローカルリポジトリにコミット(ステージングエリアのファイルをローカルリポジトリに登録)

git commit -m 'initial commit'

3, リモートリポジトリを登録

git remote add origin git@github.com:fujisawatk/sample.git

4, リモートリポジトリへプッシュ(ローカルリポジトリに登録された情報をリモートリポジトリに追加)

git push origin master

参考

10
8
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
10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?