0
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 3 years have passed since last update.

初級:Gitを活用した共同開発の方法

Last updated at Posted at 2021-08-06

##Gitとは
共同開発を可能にするターミナル上で利用するツール

###共同開発のステップ

  1. コードを変更する
  2. 共有する準備をする(コミットと呼ばれる作業)
  3. 共有する(リモート / リモートリポジトリと呼ばれる共有ファイル置き場にて共有)

###共同開発のステップはこの4コマンドのサイクル
add→commit→push→pull→ addに戻る。※以降、繰り返し。

  1. add = 自分が作成したコードを選択し
  2. commit = メッセージをつけて記録し
  3. push = 共有リポジトリにアップロードする
  4. pull = 共有リポジトリからファイルをダウンロードする

##Gitに関するターミナルコマンド
###Gitを利用するために、ターミナルにて最初に実行する

git init

###共有するためにGitに追加する

git add
git add index.html

###選択したファイルをメッセージをつけて記録する

git commit -m "メッセージ"
git commit -m "index.htmlを作成しました"

###共有で作業するリモートリポジトリに登録する

git remote add リモートリポジトリ名 URL
git remote add origin https://example.com/mysite.git

###リモートリポジトリにファイルをアップロードする(プッシュする)

git push origin master

###リモートリポジトリのファイルをダウンロードする

git pull origin master
0
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
0
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?