All of lore.kernel.org
 help / color / mirror / Atom feed
* git merge issues
@ 2014-06-12  5:16 Raghavendra
  2014-06-12  5:28 ` Vignesh Radhakrishnan
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Raghavendra @ 2014-06-12  5:16 UTC (permalink / raw)
  To: kernelnewbies

Hello everyone,

Assume that i have two branches in my repository: master and devel.

-- I've updated the master branch from the remote repository (using git 
pull).
    Assume that the file name 'file.txt' has gone through an update.

-- Now the same file has also gone through a modification in the devel 
branch (manual editing)

-- Now when I do a 'git merge master' from my devel branch, I am facing 
a conflict issue something like this :

Auto-merging file.txt
CONFLICT (content): Merge conflict in file.txt
Automatic merge failed; fix conflicts and then commit the result.

Now my question is that do I need to solve the merging issue manually or 
is there any way to solve this using git?

Thank you.
Raghavendra

-------------------------------------------------------------------------------------------------------------------------------
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
-------------------------------------------------------------------------------------------------------------------------------

^ permalink raw reply	[flat|nested] 8+ messages in thread

* git merge issues
  2014-06-12  5:16 git merge issues Raghavendra
@ 2014-06-12  5:28 ` Vignesh Radhakrishnan
  2014-06-12  5:30 ` Mandeep Sandhu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Vignesh Radhakrishnan @ 2014-06-12  5:28 UTC (permalink / raw)
  To: kernelnewbies

Hi Raghavendra ,

AFAIK , you need to solve it manually and do git commit after this.
This happens when git tries to resolve it but does know how to solve
the same. Git will record the conflict resolution that you have done
and in case the same kind of conflict occurs, it will resolve the
conflict automatically based on your previous resolution.

Thanks,
--Vignesh

On Thu, Jun 12, 2014 at 10:46 AM, Raghavendra <arrao@cdac.in> wrote:
> Hello everyone,
>
> Assume that i have two branches in my repository: master and devel.
>
> -- I've updated the master branch from the remote repository (using git
> pull).
>     Assume that the file name 'file.txt' has gone through an update.
>
> -- Now the same file has also gone through a modification in the devel
> branch (manual editing)
>
> -- Now when I do a 'git merge master' from my devel branch, I am facing
> a conflict issue something like this :
>
> Auto-merging file.txt
> CONFLICT (content): Merge conflict in file.txt
> Automatic merge failed; fix conflicts and then commit the result.
>
> Now my question is that do I need to solve the merging issue manually or
> is there any way to solve this using git?
>
> Thank you.
> Raghavendra
>
> -------------------------------------------------------------------------------------------------------------------------------
> [ C-DAC is on Social-Media too. Kindly follow us at:
> Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]
>
> This e-mail is for the sole use of the intended recipient(s) and may
> contain confidential and privileged information. If you are not the
> intended recipient, please contact the sender by reply e-mail and destroy
> all copies and the original message. Any unauthorized review, use,
> disclosure, dissemination, forwarding, printing or copying of this email
> is strictly prohibited and appropriate legal action will be taken.
> -------------------------------------------------------------------------------------------------------------------------------
>
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies



-- 
http://vigneshradhakrishnan.blogspot.com/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* git merge issues
  2014-06-12  5:16 git merge issues Raghavendra
  2014-06-12  5:28 ` Vignesh Radhakrishnan
@ 2014-06-12  5:30 ` Mandeep Sandhu
  2014-06-12  5:53 ` Andreas Platschek
  2014-06-12  6:32 ` git download jinzhao at wingtech.com
  3 siblings, 0 replies; 8+ messages in thread
From: Mandeep Sandhu @ 2014-06-12  5:30 UTC (permalink / raw)
  To: kernelnewbies

> Now my question is that do I need to solve the merging issue manually or
> is there any way to solve this using git?

This is in no way related to the Linux kernel. You should be asking
this on the git mailing list.

Short answer - you will have to manually fix the conflict. Git could
not do it automatically and hence it's asking you to fix it. After
fixing the conflict, do 'git add <file>' and then 'git commit'.

HTH,
-mandeep


>
> Thank you.
> Raghavendra
>
> -------------------------------------------------------------------------------------------------------------------------------
> [ C-DAC is on Social-Media too. Kindly follow us at:
> Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]
>
> This e-mail is for the sole use of the intended recipient(s) and may
> contain confidential and privileged information. If you are not the
> intended recipient, please contact the sender by reply e-mail and destroy
> all copies and the original message. Any unauthorized review, use,
> disclosure, dissemination, forwarding, printing or copying of this email
> is strictly prohibited and appropriate legal action will be taken.
> -------------------------------------------------------------------------------------------------------------------------------
>
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 8+ messages in thread

* git merge issues
  2014-06-12  5:16 git merge issues Raghavendra
  2014-06-12  5:28 ` Vignesh Radhakrishnan
  2014-06-12  5:30 ` Mandeep Sandhu
@ 2014-06-12  5:53 ` Andreas Platschek
  2014-06-12  6:32 ` git download jinzhao at wingtech.com
  3 siblings, 0 replies; 8+ messages in thread
From: Andreas Platschek @ 2014-06-12  5:53 UTC (permalink / raw)
  To: kernelnewbies


http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging#Basic-Merge-Conflicts

andi

On 06/12/2014 07:16 AM, Raghavendra wrote:
> Hello everyone,
>
> Assume that i have two branches in my repository: master and devel.
>
> -- I've updated the master branch from the remote repository (using git 
> pull).
>     Assume that the file name 'file.txt' has gone through an update.
>
> -- Now the same file has also gone through a modification in the devel 
> branch (manual editing)
>
> -- Now when I do a 'git merge master' from my devel branch, I am facing 
> a conflict issue something like this :
>
> Auto-merging file.txt
> CONFLICT (content): Merge conflict in file.txt
> Automatic merge failed; fix conflicts and then commit the result.
>
> Now my question is that do I need to solve the merging issue manually or 
> is there any way to solve this using git?
>
> Thank you.
> Raghavendra
>
> -------------------------------------------------------------------------------------------------------------------------------
> [ C-DAC is on Social-Media too. Kindly follow us at:
> Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]
>
> This e-mail is for the sole use of the intended recipient(s) and may
> contain confidential and privileged information. If you are not the
> intended recipient, please contact the sender by reply e-mail and destroy
> all copies and the original message. Any unauthorized review, use,
> disclosure, dissemination, forwarding, printing or copying of this email
> is strictly prohibited and appropriate legal action will be taken.
> -------------------------------------------------------------------------------------------------------------------------------
>
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 8+ messages in thread

* git download
  2014-06-12  5:16 git merge issues Raghavendra
                   ` (2 preceding siblings ...)
  2014-06-12  5:53 ` Andreas Platschek
@ 2014-06-12  6:32 ` jinzhao at wingtech.com
  2014-06-12  6:44   ` 回复: " jinzhao at wingtech.com
  2014-06-12 13:18   ` Valdis.Kletnieks at vt.edu
  3 siblings, 2 replies; 8+ messages in thread
From: jinzhao at wingtech.com @ 2014-06-12  6:32 UTC (permalink / raw)
  To: kernelnewbies

Hi,
Now we install git on servers, when we use "git clone" to download the code, the rate is too slow, how to speed the rate?
Thanks!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140612/5bfc801e/attachment-0001.html 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* 回复: git download
  2014-06-12  6:32 ` git download jinzhao at wingtech.com
@ 2014-06-12  6:44   ` jinzhao at wingtech.com
  2014-06-12 16:26     ` ?ظ?: " Valdis.Kletnieks at vt.edu
  2014-06-12 13:18   ` Valdis.Kletnieks at vt.edu
  1 sibling, 1 reply; 8+ messages in thread
From: jinzhao at wingtech.com @ 2014-06-12  6:44 UTC (permalink / raw)
  To: kernelnewbies

And use "top" command, show the memory has used 90%+, but the CPU just 1%+.  
 



jinzhao at wingtech.com

???? jinzhao at wingtech.com
????? 2014-06-12 14:32
???? kernelnewbies
??? git download
Hi,
Now we install git on servers, when we use "git clone" to download the code, the rate is too slow, how to speed the rate?
Thanks!


__________ Information from ESET NOD32 Antivirus, version of virus signature database 9932 (20140612) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140612/1eb97a31/attachment-0001.html 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/jpeg
Size: 27161 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140612/1eb97a31/attachment-0001.jpe 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* git download
  2014-06-12  6:32 ` git download jinzhao at wingtech.com
  2014-06-12  6:44   ` 回复: " jinzhao at wingtech.com
@ 2014-06-12 13:18   ` Valdis.Kletnieks at vt.edu
  1 sibling, 0 replies; 8+ messages in thread
From: Valdis.Kletnieks at vt.edu @ 2014-06-12 13:18 UTC (permalink / raw)
  To: kernelnewbies

On Thu, 12 Jun 2014 14:32:26 +0800, "jinzhao at wingtech.com" said:
> Now we install git on servers, when we use "git clone" to download the code,
> the rate is too slow, how to speed the rate?

a) You can just start it Friday as you leave the office, and it should be
done by the time you get in on Monday.

b) Remember that if you want it on multiple machines, you can clone it to one
box, and then use that as the source of a clone to other boxes....
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 848 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140612/881b6627/attachment.bin 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ?ظ?: git download
  2014-06-12  6:44   ` 回复: " jinzhao at wingtech.com
@ 2014-06-12 16:26     ` Valdis.Kletnieks at vt.edu
  0 siblings, 0 replies; 8+ messages in thread
From: Valdis.Kletnieks at vt.edu @ 2014-06-12 16:26 UTC (permalink / raw)
  To: kernelnewbies

On Thu, 12 Jun 2014 14:44:35 +0800, "jinzhao at wingtech.com" said:
> And use "top" command, show the memory has used 90%+, but the CPU just 1%+.

This is not indication of a problem - Linux will intentionally try to keep
potentially useful data cached in memory, so you should *normally* see
memory 90-95% full..

Oh, and your swapspace is probably *way* too big - 8G of RAM and 24G of swap
is just asking for trouble.  1G or 2G of swap is very useful to prevent
an OOM if you get close to your RAM limit.  But if you're dug much deeper
into swap, you're probably thrashing so hard that you'll actually wish
that you *did* OOM something and get control of your system back....

(And yes, there's times when 8G of RAM and 24G of swap makes sense.  That's
like 0.1% of the time, and if you're the admin of such a system, you
probably aren't the type that will ask questions on kernelnewbies. ;)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 848 bytes
Desc: not available
Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20140612/5bbe8428/attachment.bin 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-06-12 16:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-12  5:16 git merge issues Raghavendra
2014-06-12  5:28 ` Vignesh Radhakrishnan
2014-06-12  5:30 ` Mandeep Sandhu
2014-06-12  5:53 ` Andreas Platschek
2014-06-12  6:32 ` git download jinzhao at wingtech.com
2014-06-12  6:44   ` 回复: " jinzhao at wingtech.com
2014-06-12 16:26     ` ?ظ?: " Valdis.Kletnieks at vt.edu
2014-06-12 13:18   ` Valdis.Kletnieks at vt.edu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.