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 の基本的な流れ

Posted at

スクリーンショット 2025-01-06 14.55.50.png

チーム開発における Git の基本的な流れ

1. プロジェクトを手元にコピー(初回のみ)

git clone <リポジトリURL>

2. 自分が作業するブランチに切り替え

git switch <ブランチ名>

git switch -c <新しいブランチ名>

3. 変更したファイルをステージング

git add .

4. ローカルリポジトリにコミット

git commit -m "作業内容の説明"

5. リモートリポジトリに変更を送信:

git push origin <ブランチ名>

6. 他のメンバーの変更を取り込む(必要に応じて)

git pull origin <ブランチ名>

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?