Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Version Control with Git & GitHub | DevOpsの基礎と文化
DevOps入門

Version Control with Git & GitHub

メニューを表示するにはスワイプしてください

As discussed earlier, Git is a distributed version control system (DVCS) that allows multiple developers to work on a project simultaneously. Instead of relying on a central server, every developer has a complete copy of the project, ensuring data integrity, collaboration, and efficient tracking of changes.

This diagram shows how multiple developers collaborate using Git. Each developer has their own local version of the project, called a Working Copy, where they make changes. These changes are then pushed to a shared Repository. Other team members can pull those changes into their own working copies. This setup allows the whole team to work on the same codebase at the same time without conflicts.

What is GitHub?

Note
Definition

GitHub is a remote repository hosting service that integrates with Git to enhance version control and collaboration. It provides cloud-based storage for repositories, allowing developers to securely manage and access their code from anywhere.

GitHub also includes collaboration features such as pull requests, issues, and code reviews, enabling teams to work together efficiently. Additionally, it supports Continuous Integration (CI) and project management tools, streamlining workflows and automating testing and deployment processes. These features make GitHub a powerful platform for modern software development and DevOps practices.

Now let's refresh our knowledge of the four essential Git commands (see more at the Git Course here).

These four Git commandsinit, add, commit, and push — form the core of version control. They help you start tracking your project, save changes, and share your work with others.

1. Which Git command initializes a new repository and starts tracking changes?

2. What does the git push command do?

question mark

Which Git command initializes a new repository and starts tracking changes?

正しい答えを選んでください

question mark

What does the git push command do?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  5

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  5
some-alt