* Committing a change from one branch another branch
@ 2014-03-13 9:56 Jagan Teki
2014-03-13 10:21 ` Andreas Schwab
2014-03-13 15:36 ` Brandon McCaig
0 siblings, 2 replies; 4+ messages in thread
From: Jagan Teki @ 2014-03-13 9:56 UTC (permalink / raw)
To: git
Hi,
I have two branches.
- master-b1
- master-b2
Suppose I'm in master-b1 then did a change
on master-b1
$ git add test/init.c
$ git commit -s -m "init.c Changed!"
$ git log
Author: Jagan Teki <jagannadh.teki@gmail.com>
Date: Thu Mar 13 00:48:44 2014 -0700
init.c Changed!
$ git checkout master-b2
$ git log
Author: Jagan Teki <jagannadh.teki@gmail.com>
Date: Thu Mar 13 00:48:44 2014 -0700
init.c Changed!
How can we do this, any idea?
--
Jagan.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Committing a change from one branch another branch
2014-03-13 9:56 Committing a change from one branch another branch Jagan Teki
@ 2014-03-13 10:21 ` Andreas Schwab
2014-03-13 15:36 ` Brandon McCaig
1 sibling, 0 replies; 4+ messages in thread
From: Andreas Schwab @ 2014-03-13 10:21 UTC (permalink / raw)
To: Jagan Teki; +Cc: git
Jagan Teki <jagannadh.teki@gmail.com> writes:
> How can we do this, any idea?
git cherry-pick
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Committing a change from one branch another branch
2014-03-13 9:56 Committing a change from one branch another branch Jagan Teki
2014-03-13 10:21 ` Andreas Schwab
@ 2014-03-13 15:36 ` Brandon McCaig
2014-03-14 9:34 ` Jagan Teki
1 sibling, 1 reply; 4+ messages in thread
From: Brandon McCaig @ 2014-03-13 15:36 UTC (permalink / raw)
To: Jagan Teki; +Cc: git
Jagan:
On Thu, Mar 13, 2014 at 4:56 AM, Jagan Teki <jagannadh.teki@gmail.com> wrote:
> Hi,
Hello,
> I have two branches.
> - master-b1
> - master-b2
>
> Suppose I'm in master-b1 then did a change
> on master-b1
> $ git add test/init.c
> $ git commit -s -m "init.c Changed!"
> $ git log
> Author: Jagan Teki <jagannadh.teki@gmail.com>
> Date: Thu Mar 13 00:48:44 2014 -0700
>
> init.c Changed!
>
> $ git checkout master-b2
> $ git log
> Author: Jagan Teki <jagannadh.teki@gmail.com>
> Date: Thu Mar 13 00:48:44 2014 -0700
>
> init.c Changed!
>
> How can we do this, any idea?
What you're asking is ambiguous and vague. The example output that you
give doesn't even really make sense. You need to give more details
about what you have and what you want to do to get proper help.
Or join #git on irc.freenode.net for real-time help if you aren't sure
how to explain it.
Regards,
--
Brandon McCaig <bamccaig@gmail.com> <bamccaig@castopulence.org>
Castopulence Software <https://www.castopulence.org/>
Blog <http://www.bamccaig.com/>
perl -E '$_=q{V zrna gur orfg jvgu jung V fnl. }.
q{Vg qbrfa'\''g nyjnlf fbhaq gung jnl.};
tr/A-Ma-mN-Zn-z/N-Zn-zA-Ma-m/;say'
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Committing a change from one branch another branch
2014-03-13 15:36 ` Brandon McCaig
@ 2014-03-14 9:34 ` Jagan Teki
0 siblings, 0 replies; 4+ messages in thread
From: Jagan Teki @ 2014-03-14 9:34 UTC (permalink / raw)
To: Brandon McCaig; +Cc: git
Hi Brandon McCaig,
On Thu, Mar 13, 2014 at 9:06 PM, Brandon McCaig <bamccaig@gmail.com> wrote:
> Jagan:
>
> On Thu, Mar 13, 2014 at 4:56 AM, Jagan Teki <jagannadh.teki@gmail.com> wrote:
>> Hi,
>
> Hello,
>
>> I have two branches.
>> - master-b1
>> - master-b2
>>
>> Suppose I'm in master-b1 then did a change
>> on master-b1
>> $ git add test/init.c
>> $ git commit -s -m "init.c Changed!"
>> $ git log
>> Author: Jagan Teki <jagannadh.teki@gmail.com>
>> Date: Thu Mar 13 00:48:44 2014 -0700
>>
>> init.c Changed!
>>
>> $ git checkout master-b2
>> $ git log
>> Author: Jagan Teki <jagannadh.teki@gmail.com>
>> Date: Thu Mar 13 00:48:44 2014 -0700
>>
>> init.c Changed!
>>
>> How can we do this, any idea?
>
> What you're asking is ambiguous and vague. The example output that you
> give doesn't even really make sense. You need to give more details
> about what you have and what you want to do to get proper help.
>
> Or join #git on irc.freenode.net for real-time help if you aren't sure
> how to explain it.
I tried #git irc channel, looks like I'm facing some firewall issue on my end.!
OK - Let me explain my query again.
I've a git repository with 2 branches.
- master-b1
- master-b2
I have to work both these branches since I need two different deliveries.
master-b1 have a contents of
joo_v1/test.txt
joo_v2/test.txt
master-b2
joo/test.txt
Here, joo_v2 on master-b1 is same as joo on master-b2 means the latest updates
on master-b1 with <DIR_NAME>_<VERSION> becomes <DIR> on master-b2
Suppose, if user is change the contents on joo_v2 on master-b1 will change
the contents on joo on master-b2 (files contains particular directories are same
name with same contents - joo_v2/test.txt and joo/text.txt)
The moment user commit the change on master-b1 will create a commit on master-b2
Please let me know if you still need any more information.
I will come to IRC soon, for more discussion.
thanks!
--
Jagan.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-14 9:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-13 9:56 Committing a change from one branch another branch Jagan Teki
2014-03-13 10:21 ` Andreas Schwab
2014-03-13 15:36 ` Brandon McCaig
2014-03-14 9:34 ` Jagan Teki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).