1
1

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

#初期設定
名前の設定
$ git config --global user.name "name"

メールアドレスの設定
$ git config --global user.email "email@email.com"

設定の確認
$ less ~/.gitconfig

#ファイル作成
ファイル作成
$ mkdir failname

作成したファイルへ移動
$ cd failname

初期化(gitの管理下におく)
$ git init

ファイル作成

#ステージする
ワークツリーの状況確認
$ git status

ステージする
$ git add ファイル名

#コミットする
インデックスの状況確認
$ git status

コミットする
git commit -m "コメント"

コミット履歴確認
git log

#プッシュする

Githubで新規リポジトリつくる

リモートリポジトリの登録
$ git remote add origin 上記で作成した
URL

リモートの状況確認
$ git remote -v

リモートリポジトリへプッシュ
$ git push origin master

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?