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?

Git 共同作業を行うための最低限のコマンド

0
Posted at

Git での共同作業

さまざまな Git 関連の記事が紹介されているが共同作業を行うためには最低限clone, push, pullを知っていれば十分である.そこで,この記事ではこの3つのコマンドについてのみ解説する.

clone コマンド

最初にgitのレポジトリをローカルに取り込むコマンド

git clone <<URL>>

push コマンド

編集したレポジトリをリモートに反映させるコマンド

git add .
git commit -m"コミットメッセージ"
git push origin main

pull コマンド

リモートでの変更をローカルに取り込むコマンド

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