0
3

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.

作成したアプリをGitHubに上げる方法

Posted at

#前提条件
①GitHubのアカウントを作成している。
②GitHub Desktopをインストールしている。
#手順①ターミナルを操作し、ディレクトリを作成したアプリに移動させる
今回はgithub-appという名前のアプリをGitHubに上げる体で進めます。

  cd github-app

#手順②作成したアプリをローカルリポジトリにする

以下の流れで進めていきます。
Current Repository

Add

Add Existing Repository
image.png

Choose

github-appを選択

Add Repository
これでローカルリポジトリを作成できます。
image.png
※Add Repositoryが活性化されずクリックできない場合 
作成したアプリのディレクトリでgit initコマンドを実行します。

cd github-app
git init

#手順③コミットする

コミットメッセージを記述し、Commit to masterを押します。
スクリーンショット 2020-09-04 0.27.38.png

#手順④リモートリポジトリを作成する

Publish repositoryを押します。
スクリーンショット 2020-09-04 0.30.43.png

Keep this code privateのチェックを外し、
Publish repositoryを押します。
スクリーンショット 2020-09-04 0.32.42.png

以上の操作でGitHubのリモートリポジトリが作成できます。

これで作成したアプリをGitHub上に上げる事ができました。

0
3
1

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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?