2013/5/18 Dale R. Worley <wor...@alum.mit.edu>

> perimenting with using Git as a backup tool (by automatically
> snapshotting my home directory), I've generated a long branch which is
> a series of commits that record states of my home directory.
>
> Actually, I've got *two* such branches.
>
> It would be very convenient if I could assemble the two series of
> commits in time-order to form one branch that covers the total time
> interval.  I figure there is a 10% chance that there is some Git tool
> that happens to make this really easy, and so I should ask before I
> write a script to do the job manually.
>

mmm i think you have 2 ways

just a simple merge

go to your final branch (named branch1)

git checkout branch1

- next, merge

git merge branch2

then, continue using branch1...

or use rebase if you want track all comits

http://git-scm.com/book/ch3-6.html

read it, :D

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to