Git - Lidando com Conflitos

Realizar mudanças na filial wchar_support

Jerry está trabalhando no wchar_supportramo. Ele muda o nome das funções e após o teste, ele confirma suas mudanças.

[[email protected] src]$ git branch
 master
* wchar_support
[[email protected] src]$ git diff

O comando acima produz o seguinte resultado -

diff --git a/src/string_operations.c b/src/string_operations.c
index 8fb4b00..01ff4e0 100644
--- a/src/string_operations.c
+++ b/src/string_operations.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <wchar.h>
-size_t w_strlen(const wchar_t *s)
+size_t my_wstrlen(const wchar_t *s)
{
   const wchar_t *p = s;

Depois de verificar o código, ele confirma suas alterações.

[[email protected] src]$ git status -s
M string_operations.c

[[email protected] src]$ git add string_operations.c

[[email protected] src]$ git commit -m 'Changed function name'
[wchar_support 3789fe8] Changed function name
1 files changed, 1 insertions(+), 1 deletions(-)

[[email protected] src]$ git push origin wchar_support

O comando acima produzirá o seguinte resultado -

Counting objects: 7, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 409 bytes, done.
Total 4 (delta 1), reused 0 (delta 0)
To [email protected]:project.git
64192f9..3789fe8 wchar_support -> wchar_support

Realizar mudanças no ramo mestre

Enquanto isso, no branch master, Tom também altera o nome da mesma função e envia suas alterações para o branch master.

[[email protected] src]$ git branch
* master
[[email protected] src]$ git diff

O comando acima produz o seguinte resultado -

diff --git a/src/string_operations.c b/src/string_operations.c
index 8fb4b00..52bec84 100644
--- a/src/string_operations.c
+++ b/src/string_operations.c
@@ -1,7 +1,8 @@
#include <stdio.h>
#include <wchar.h>
-size_t w_strlen(const wchar_t *s)
+/* wide character strlen fucntion */
+size_t my_wc_strlen(const wchar_t *s)
{
   const wchar_t *p = s;

Depois de verificar o diff, ele confirma suas alterações.

[[email protected] src]$ git status -s
M string_operations.c

[[email protected] src]$ git add string_operations.c

[[email protected] src]$ git commit -m 'Changed function name from w_strlen to my_wc_strlen'
[master ad4b530] Changed function name from w_strlen to my_wc_strlen
1 files changed, 2 insertions(+), 1 deletions(-)

[[email protected] src]$ git push origin master

O comando acima produzirá o seguinte resultado -

Counting objects: 7, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 470 bytes, done.
Total 4 (delta 1), reused 0 (delta 0)
To [email protected]:project.git
64192f9..ad4b530 master -> master

No wchar_supportbranch, Jerry implementa a função strchr para uma sequência de caracteres ampla. Após o teste, ele confirma e envia suas alterações para owchar_support ramo.

[[email protected] src]$ git branch
master
* wchar_support
[[email protected] src]$ git diff

O comando acima produz o seguinte resultado -

diff --git a/src/string_operations.c b/src/string_operations.c
index 01ff4e0..163a779 100644
--- a/src/string_operations.c
+++ b/src/string_operations.c
@@ -1,6 +1,16 @@
#include <stdio.h>
#include <wchar.h>
+wchar_t *my_wstrchr(wchar_t *ws, wchar_t wc)
+
{
   +
   while (*ws) 
   {
      +
      if (*ws == wc)
      +
      return ws;
      +
      ++ws;
      + 
   }
   + return NULL;
   +
}
+
size_t my_wstrlen(const wchar_t *s)
{
   const wchar_t *p = s;

Após a verificação, ele confirma suas alterações.

[[email protected] src]$ git status -s
M string_operations.c

[[email protected] src]$ git add string_operations.c

[[email protected] src]$ git commit -m 'Addded strchr function for wide character string'
[wchar_support 9d201a9] Addded strchr function for wide character string
1 files changed, 10 insertions(+), 0 deletions(-)

[[email protected] src]$ git push origin wchar_support

O comando acima produzirá o seguinte resultado -

Counting objects: 7, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 516 bytes, done.
Total 4 (delta 1), reused 0 (delta 0)
To [email protected]:project.git
3789fe8..9d201a9 wchar_support -> wchar_support

Enfrentar conflitos

Tom quer ver o que Jerry está fazendo em seu ramo privado, então ele tenta puxar as últimas mudanças do wchar_support branch, mas Git aborta a operação com a seguinte mensagem de erro.

[[email protected] src]$ git pull origin wchar_support

O comando acima produz o seguinte resultado -

remote: Counting objects: 11, done.
63Git Tutorials
remote: Compressing objects: 100% (8/8), done.
remote: Total 8 (delta 2), reused 0 (delta 0)
Unpacking objects: 100% (8/8), done.
From git.server.com:project
* branch
wchar_support -> FETCH_HEAD
Auto-merging src/string_operations.c
CONFLICT (content): Merge conflict in src/string_operations.c
Automatic merge failed; fix conflicts and then commit the result.

Resolver conflitos

A partir da mensagem de erro, fica claro que há um conflito em src / string_operations.c. Ele executa o comando git diff para ver mais detalhes.

[[email protected] src]$ git diff

O comando acima produz o seguinte resultado -

diff --cc src/string_operations.c
index 52bec84,163a779..0000000
--- a/src/string_operations.c
+++ b/src/string_operations.c
@@@ -1,8 -1,17 +1,22 @@@
#include <stdio.h>
#include <wchar.h>
++<<<<<<< HEAD
+/* wide character strlen fucntion */
+size_t my_wc_strlen(const wchar_t *s)
++=======
+ wchar_t *my_wstrchr(wchar_t *ws, wchar_t wc)
+
{
   +
   +
   while (*ws) 
   {
      if (*ws == wc)
      +
      return ws;
      +
      ++ws;
      + 
   }
   + return NULL;
   +
}
+
+ size_t my_wstrlen(const wchar_t *s)
++>>>>>>>9d201a9c61bc4713f4095175f8954b642dae8f86
{
   const wchar_t *p = s;

Como Tom e Jerry mudaram o nome da mesma função, Git fica confuso e pede ao usuário para resolver o conflito manualmente.

Tom decide manter o nome da função sugerido por Jerry, mas mantém o comentário adicionado por ele como está. Depois de remover os marcadores de conflito, git diff ficará assim.

[[email protected] src]$ git diff

O comando acima produz o seguinte resultado.

diff --cc src/string_operations.c
diff --cc src/string_operations.c
index 52bec84,163a779..0000000
--- a/src/string_operations.c
+++ b/src/string_operations.c
@@@ -1,8 -1,17 +1,18 @@@
#include <stdio.h>
#include <wchar.h>
+ wchar_t *my_wstrchr(wchar_t *ws, wchar_t wc)
+
{
   +
   while (*ws) 
   {
      +
      if (*ws == wc)
      +
      return ws;
      +
      ++ws;
      + 
   }
   + return NULL;
   +
}
+
+/* wide character strlen fucntion */
- size_t my_wc_strlen(const wchar_t *s)
+ size_t my_wstrlen(const wchar_t *s)
{
   const wchar_t *p = s;

Como Tom modificou os arquivos, ele tem que fazer o commit dessas mudanças primeiro e depois disso, ele pode puxar as mudanças.

[[email protected] src]$ git commit -a -m 'Resolved conflict'
[master 6b1ac36] Resolved conflict

[[email protected] src]$ git pull origin wchar_support.

Tom resolveu o conflito, agora a operação pull será bem-sucedida.