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.

Git(ターミナル編)について

Posted at

背景

ターミナルでのGit操作方法を記してみた。

手順

※最初に、brew install gitでGitをインストールしておく。

1.git initを実行する。
(Gitを使う準備)

2.git add ファイル名
(共有したいファイルを選択する)

3.git commit -m “メッセージ “
(記録をコミットする)

4.git remote add origin リモートのURL
(リモートのURLを登録)
※一回やれば良い※

5.git push origin master
(リモートにファイルをアップロード)

6.git pull origin master
(リモートのファイルをダウンロード)


$ git init

$ git add .                              # 「.」で全ファイルを選択できる

$ git commit -m initial message

$ git remote add origin リモートのURL

$ git push origin master

$ git pull 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?