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

GitHub - リポジトリの作成 #2

Last updated at Posted at 2019-03-03

GitHubを実際に使用してみる

リポジトリの作成

「New repository」で、新規作成ページへ

  • Repository name
    リポジトリの名前を入力
  • Description
    リポジトリの説明を入力。任意。
  • Public,Private
    リポジトリを公開するか、非公開するかの設定。
  • Initialize this repository with a README
    リポジトリの初期化とREADMEファイルの設置が行われ、すぐにcloneできるようになる。ローカルの既存のGitリポジトリを登録する場合は、チェックを外して、手動でpushする。
  • Add.gitignore
    使用するフレームワークを選択することで、管理不要なファイルを.gitignoreファイルに記述してくれる。

「Create repository」で完成。

その後の大まかな流れ

ターミナル
// 作成したリポジトリを開発環境にクローンする
git clone {リポジトリのURL}

// 開発
// コミットする(ローカル側のリポジトリの更新)
git add {ファイル名 or .(すべて)}
git commit -m "コミットメッセージ"
// コミットの確認
git log

// pushする(GitHub側のリポジトリの更新)
git push
1
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
1
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?