08-Git&GitHUb

Version Control Git (Part.12~Part.21)[GitHub(Part.15)]|Synchronization of Local and Remote Repositories

Version Control (Part1-Part.11) [Git] articles are available on Amazon kindle Unlimited (e-book).

howahowablog.com will only be able to read Part.5/10/11.

Version Control (Parts 12-21) [GitHub (Part 1)] articles are available on Amazon kindle Unlimited (e-book).

Only part15/19 will be available on howahowablog.com.

Version Control (Part 21-Part.30) [GitHub (Part 2)] articles are available on Amazon kindle Unlimited (e-book).

Only Part.24/30 will be available on howahowablog.com.

Objectives of Chapter 15

Synchronize the contents of a local repository with a remote repository.
Understand the overview and operation of pull requests.

Joint development using remote repository(Part.2)

Synchronize the contents of the local and remote repositories

How to synchronize the contents of a local repository with a remote repository

When synchronizing the contents of a local repository to a new remote repository, as in this case, or when synchronizing the contents of a local repository to a remote repository after making changes in the local repository, the following operations must be performed as preparations before synchronization.

  1. Get the state of a remote repository into a remote tracking branch of the local repository.
  2. Merge the obtained state with the main branch in the local repository.
  3. Create a topic branch in the local repository.
  4. Work on topic branch and finish to commit.
  5. Send the contents of the local repository to the remote repository.
  6. Request a change confirmation in the remote repository.
  7. Approve the changes and bring the remote repository up to date.

※In the second operation, the main branch in the local repository and the main branch in the remote repository have different branch ancestry, so they are synchronized using options.

※The operations in “3” and “4” are part of the flow to be performed in a joint development.

【Important Words】

Remote Tracking Branch…The remote tracking branch is a branch on the local repository side to retrieve the latest state of the remote repository. If the state of this branch is not the same as the latest state of the remote repository, it must be reacquired.

Topic Branch…A branch used for editing work. One topic branch is created and used for each function (explained in more detail in later chapters).

Get remote repository status to local repository

Before synchronizing to a remote repository, the remote tracking branch must be kept up to date. There are two types of operations to bring a remote tracking branch up to date: “fetch” and “pull”.

If there are any differences, the system automatically checks for them and adds only the changed parts.

Difference between fetch and pull

A fetch only updates a remote tracking branch.

A pull brings the remote tracking branch up to date and then merges it into the working branch.

【English translation in illustration】
fetchを行うとローカルリポジトリ内にあるリモートリポジトリの状態を保管できる専用のブランチ(リモート追跡ブランチ)「origin main」に差分が確認され内容が追加されます。
→When fetching is performed, the differences are checked and the contents are added to “origin main”, a dedicated branch in the local repository that can store the remote repository’s status (remote tracking branch).

リモート追跡ブランチ → remote tracking branch

mainブランチ → main branch

fetchの操作 → Operation of fetch

【English translation of speech bubbles】
まずは新規のリモートリポジトリの状態を取り込もう
→First, let’s get the status of the new remote repository.

【English translation in illustration】
pullを行うとローカルリポジトリ内にあるリモートリポジトリの状態を保管できる専用のブランチ(リモート追跡ブランチ)「origin main」に差分が確認され内容が追加されます。その後、ローカルリポジトリの作業ブランチへのmergeも行われます。※リモート追跡ブランチの状態は維持されます。
→When a pull is performed, the difference is checked and added to origin main, a branch in the local repository dedicated to storing the remote repository’s status (remote tracking branch). After that, a merge to the working branch in the local repository is also performed.
※The status of the remote tracking branch is maintained.

Strictly speaking, the main branch is not a working branch, but a topic branch is created and edited on the topic branch.

リモート追跡ブランチ → remote tracking branch

mainブランチ → main branch

pullの操作 → Operation of pull

【English translation of speech bubbles】
まずは新規のリモートリポジトリの状態を取り込もう
→First, let’s get the status of the new remote repository.

In this book, the “fetch” + “merge” operation is used. (The result is the same as a “pull” operation.)

It is easier to understand the difference if you think of “fetch” + “merge” = “pull”.

Some illustrations of Git branches are drawn from the perspective of the “branch” status, while others are drawn from the perspective of what the “branch” points to, which can be confusing.

This book is illustrated from the perspective of state of the branch. (main branch is “light blue” -> “light blue” -> “orange and light blue”, origin/main branch (remote tracking branch) is “white circle” -> “orange”, and so on)

Note that in the illustration of the pull operation, the main branch after merge is orange and light blue, but this does not mean that the main branch and origin/main branch (remote tracking branch) are now the same just because they have been merged.

The main branch would show “orange and light blue” with updated contents, but the origin/main branch is not moved from the orange circle as a remote tracking branch, but still exists in its orange state.

Operation of fetch. (git fetch origin command)

Import git@github.com:howahowablog/howahowaSite.git into a remote tracking branch of the local repository.

The above command means “fetch the contents of origin (an alias for the address of the remote repository) into the remote tracking branch. The remote tracking branch does not need to be specified.

Before sending content from a local repository to a remote repository, the content of the remote repository must be imported into the remote tracking branch. Sending content before inclusion (called a push operation) will be rejected.

Merge the obtained state with the main branch in the local repository

※In this case, the remote and local repositories have different branch ancestors (each was created as a separate new branch when it was created), so the normal merge operation cannot be performed.

In this situation, use the “–allow-unrelated-histories” option. This option allows you to merge branches that were created separately, as in this case.

Operation of merge(git merge –allow-unrelated-histories origin/main)

“git merge –allow-unrelated-histories origin/main” command can merge branches with different ancestry.

Create a topic branch in the local repository

A branch used for editing is called a “topic branch”. Topic branches are created and used as “one topic branch per function. (See later chapters for more details.)

After merging the contents of the remote tracking branch into the main branch, create a new topic branch and edited within this topic branch.

When the editing is complete (staging and commit iterations with the final commit completed), the topic branch is sent to the remote repository (push operation).

After the push operation, a branch with the same name is added to the remote repository (the orange arrow in the illustration below is the push operation).

This time, the topic branch is created as “new-project”. There are no rules for naming the topic branch this time, but we will discuss this in detail in Chapter 8.

【English translation in illustration】
pushの操作はローカルリポジトリのトピックブランチと同じものをリモートリポジトリに作成することのできる操作です。リモートリポジトリの黒色ブランチに紫色ブランチが作成されます。
→The push operation is an operation that allows you to create a branch in the remote repository that is identical to a topic branch in the local repository. A purple branch is created on the black branch in the remote repository.

リモートリポジトリのmainブランチ → main branch in the remote repository

new-projectブランチ → new-project branch

リモート追跡ブランチ → remote tracking branch

mainブランチ → main branch

【English translation of speech bubbles】

new-projectブランチをリモートリポジトリへpushします。
→Push the new-project branch to the remote repository.

“git branch ‘branch-name” command

Create a new branch with the git branch command. Just after creation, the content of the new branch is identical to the original branch (in this case, the main branch).

You can view a list of branches with git branch.

※All the operations you are doing with these commands are local operations and changes on the local side. They are not GitHub changes. All newly created branches are also local operations.

There is no visual change, but you can imagine that you can now switch between the “main” and “new-project” branches in the Git-managed folders in Explorer.

Work on a branch and finish to commit

Why do we need a topping branch?” It is because the main branch is a branch that should not be polluted.

Basically, you do not update files in the main branch. You should always create a branch and work on a topic branch side.

In “Do not think hard Git & GitHub vol. 1”, we staged and committed on the main branch only as an exercise, but you should create a topic branch and do editing and updating on that branch.

Topic branches are periodically pushed to the remote repository for pull requests and review, and then merged on the remote repository.

In collaborative development, the main branch in the local repository is not used for merging.

In the local repository, after editing is completed and committed on the topic branch, push is done to the remote repository. After that, we make a pull request for review by the project manager.

When all reviews are complete and there are no problems, a merge is performed in the remote repository under circumstances that the members are aware of (e.g., at a meeting). After that, the member pulls the latest status to the local side.

Send the contents of the local repository to a remote repository

Confirm the procedure for sending a new branch (topic branch) to a remote repository. Switch the branch to be used to “new-project” topic branch using the git checkout command.

In actual development, we will start editing from here, but since we will not be editing this time, we will move on to the push operation soon.

When pushing, be sure to move to the branch you want to push to. (Use git checkout command) When pushing, be sure to go to the branch what you are pushing. (Use the git checkout command).

“git checkout branch-name” command

The “git checkout branch-name” command switches the branch to be used.

Confirm with the “git status” command that the commit is complete, and the working tree is clean.

Push the “new-project” branch to the remote repository. This operation enables you to create a pull request on the remote repository.

Confirmation of changes and request for changes, in the remote repository

From here, you will be manipulating the remote repository.

If you are using Git and GitHub together for the first time, you may be confused as to which operation you are currently using, but we distinguish local operations using “Visual Studio Code” or “Git Bush (command)” as Git operations and operations on GitHub pages using remote repositories is distinguished from GitHub operations.

If you check the top page of GitHub, you will see a “Compare & pull request” button. This button will disappear after a certain period. If it disappears, you can check it from the “Pull request” tab.

Once you have finished your local work and pushed the branch, you submit a request to the project manager to make changes to the remote repository. This is a pull request. The pull request is reviewed, and if there are no problems, the changes are merged into the remote repository.

Click “Compare & pull request” to make a pull request. Clicking “Compare & pull request” will take you to the next page.

設定・入力の項目は次のようになっています。

【English translation in illustration】
「base」にマージ先「compare」にマージするブランチを指定
→Specify the branch that accepts merges in “base” and the branch to merge in “compare

プルリクエストタイトル → Pull request title.

プルリクエスト概要を入力 → Enter the pull request summary.

base:A branch that accepts merges in the remote repository.
This book selects main.

compare:Select the topic branch you pushed.
This time, the new-project branch is selected.

title:Enter the title of the pull request.

Write:プルリクエストの概要を入力します。

Enter a summary of the pull request.
※At this point, merge is not yet performed.

Approve a pull request and bring the remote repository up to date (synchronization)

Click “Merge pull request” to merge the “topic branch” pushed to the GitHub side into the “main branch”.

【English translation in illustration】
コンフリクトが無いことが確認できます。 → You can confirm that there are no conflicts.

プルリクエストをマージします。 → Merge pull requests.

When the confirmation screen appears, click “Confirm merge” if there are no problems.

【English translation in illustration】
マージ内容の確認です。OKであれば「Confirm merge」をクリックします。
→This is a confirmation of the merge contents. If all is well, click “Confirm Merge”.

In GitHub, merging can be done with only a click of a button. If the screen changes as follows, the merge is complete.

【English translation in illustration】
「Open」が「Merged」に変化します。
→”Open” will change to “Merged”.

Pull request successfully merged and closeと表示されていればマージ完了
→If the message “Pull request successfully merged and closed” is displayed, the merge is complete.

If you go to the GitHub “howahowaSite” page, the contents are as follows.

※”howahowaSite” page should be replaced with your own page.

That’s all for this article.

「Git・GitHub」おすすめ書籍6選+α【初心者用4冊&実践用2冊&番外編1冊】| 現役エンジニア&プログラミングスクール講師「Git・GitHub」初心者の方がGitの操作を理解するためのお勧めの書籍について取り上げています。また中級者の方が更に進んだ学習ができる実践的な書籍についてお勧めできる2冊を取り上げています。ページの下部には「おすすめのITスクール情報」「おすすめ求人サイト」について情報を掲載中。...

ブックマークのすすめ

「ほわほわぶろぐ」を常に検索するのが面倒だという方はブックマークをお勧めします。ブックマークの設定は別記事にて掲載しています。

「お気に入り」の登録・削除方法【Google Chrome / Microsoft Edge】| 現役エンジニア&プログラミングスクール講師「お気に入り」の登録・削除方法【Google Chrome / Microsoft Edge】について解説している記事です。削除方法も掲載しています。...
【パソコン選び】失敗しないための重要ポイント | 現役エンジニア&プログラミングスクール講師【パソコン選び】失敗しないための重要ポイントについての記事です。パソコンのタイプと購入時に検討すべき点・家電量販店で見かけるCPUの見方・購入者が必要とするメモリ容量・HDDとSSDについて・ディスプレイの種類・バッテリーの持ち時間や保証・Officeソフト・ウィルス対策ソフトについて書いています。...
RELATED POST
08-Git&GitHUb

Version Control Git (Part.22~Part.30)[GitHub(Part.24)]|Pull requests (re-requests)

2024年5月23日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site
08-Git&GitHUb

Version Control Git (Part1-Part.11) [Git (Part.10)] | Renaming and deleting files/directories in Git-managed directory

2024年4月2日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site
08-Git&GitHUb

Version Control Git (Part.12~Part.21)[GitHub(Part.19)]|How Branches Operate in Collaborative Editing

2024年4月13日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site
08-Git&GitHUb

Version Control Git (Part1-Part.11) [Git (Part.11)]|Setting ".gitignore" and ".gitignore_global" (setting files not to be managed by Git)

2024年4月4日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site
08-Git&GitHUb

バージョン管理【Git と GitHub】まとめ|現役エンジニア&プログラミングスクール講師

2023年6月5日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site
08-Git&GitHUb

バージョン管理(Part.22~Part.30)【GitHub(part.24)】|プルリクエスト(再リクエスト)| 現役エンジニア&プログラミングスクール講師

2024年1月31日
プログラミング学習 おすすめ書籍情報発信 パソコン初心者 エンジニア希望者 新人エンジニア IT業界への就職・転職希望者 サポートサイト Programming learning Recommended schools Recommended books Information dissemination Computer beginners Prospective engineers New engineers Prospective job seekers in the IT industry Support site