Git patch shows tab but files doesn't

2016-02-12 Thread Jagan Teki
Hi, I edited a file as one space between #define and macro and tab space between macro and BIT value, similar as below. #define USE_FSR BIT(6) #define SNOR_WR BIT(7) Once I created the patch looks different as tab space between #define and macro and 2 tab spaces between macro a

Add Cc,Tested-by list while 'git commit'

2016-02-07 Thread Jagan Teki
Do we have any git config options to add Cc and Tested-by list like Signed-off-by is fetched from git config. example: $ git commit -s Cc: Arjun Ani Tested-by: Jagan Teki Signed-off-by: Jagan Teki Please share if we have any inputs to solve this. -- Jagan. -- To unsubscribe from this list

Re: Show total commit count of two authors or more authors into first author

2015-12-06 Thread Jagan Teki
On 7 December 2015 at 02:50, brian m. carlson wrote: > On Mon, Dec 07, 2015 at 01:45:19AM +0530, Jagan Teki wrote: >> Thanks for the info, I'm able to map two author with e-mail but it's >> not working when I group 3 >> >> $ .mailmap >> Jagan Teki Jaga

Re: Show total commit count of two authors or more authors into first author

2015-12-06 Thread Jagan Teki
On 7 December 2015 at 01:01, Andreas Schwab wrote: > Jagan Teki writes: > >> Out of which below three names are with same author which changed >> while submitted patches. >> 149 Jagan Teki >> 122 Jagannadha Teki >> 116 Jagannadha Sutradharudu Teki &

Show total commit count of two authors or more authors into first author

2015-12-06 Thread Jagan Teki
I usually count commits as below command $ git shortlog -s -n 149 Jagan Teki 148 Otavio Salvador 143 Bo Shen 137 Lokesh Vutla 134 Minkyu Kang 132 Marian Balakowicz 129 Haavard Skinnemoen 127 Holger Brunck 124 Tim Harvey 122 Jagannadha Teki 120 Daniel

How to give permission to another user on my git remote

2014-08-11 Thread Jagan Teki
Hi, I have created one repository (but I'm not a root user on the server) like $ git init --bare And I do push my changes locally to remote repo where I created. My friend also working the same repo, and he needs to push the changes on the same. I tried by adding below line on the remote config

Single push for internal and public repo

2014-06-30 Thread Jagan Teki
Usually will do $ git push local_branch:destination_branch repo - could be internal and public remote repo. Any command or modified git push will do a push for internal and public repo's Let me know If I'm unclear. thanks! -- Jagan. -- To unsubscribe from this list: send the line "unsubscribe

Re: Tool/Scripts - For maintaining different branches on a repo

2014-06-26 Thread Jagan Teki
On Sat, Jun 21, 2014 at 4:00 AM, brian m. carlson wrote: > On Thu, Jun 19, 2014 at 04:18:22PM +0530, Jagan Teki wrote: >> Hi, >> >> I have a single repo with different kinds of branches say 4 branches. >> Developers will send a patches wrt to specific branch. >

Tool/Scripts - For maintaining different branches on a repo

2014-06-19 Thread Jagan Teki
Hi, I have a single repo with different kinds of branches say 4 branches. Developers will send a patches wrt to specific branch. Is there any opensource tool/script that does applying patches/maintaining the branches in repo w/o manual intervention? thanks! -- Jagan. -- To unsubscribe from this

Re: Apply commits from one branch to another branch (tree structure is different)

2014-03-14 Thread Jagan Teki
On Sat, Mar 15, 2014 at 2:07 AM, Andrew Wong wrote: > On Fri, Mar 14, 2014 at 4:01 PM, Jagan Teki wrote: >> On Sat, Mar 15, 2014 at 12:48 AM, Andrew Wong wrote: >>> On Fri, Mar 14, 2014 at 1:39 PM, Jagan Teki >>> wrote: >>>> Suppose developer send 10

Re: Apply commits from one branch to another branch (tree structure is different)

2014-03-14 Thread Jagan Teki
On Sat, Mar 15, 2014 at 12:48 AM, Andrew Wong wrote: > On Fri, Mar 14, 2014 at 1:39 PM, Jagan Teki wrote: >> Suppose developer send 10 patches on branch1 where are changes in terms >> of _/ then I need to apply on my local repo branch1, till now >> is fine then I need to app

Re: Apply commits from one branch to another branch (tree structure is different)

2014-03-14 Thread Jagan Teki
Don't know what happen, I'm unable to join #git channel [23:40] hi [23:40] == Cannot send to channel: #git Can any one help! On Fri, Mar 14, 2014 at 11:09 PM, Jagan Teki wrote: > Hi, > > I have two branch in one repo that I need to maintain for 2 different > deliver

Apply commits from one branch to another branch (tree structure is different)

2014-03-14 Thread Jagan Teki
Hi, I have two branch in one repo that I need to maintain for 2 different deliveries. Say branch1 and branch2 in test.git repo. test.git - branch1 foo_v1/text.txt foo_v2/text.txt - branch2 foo/text.txt branch1 is developers branch all source looks version'ed manner and branch2 is

Re: Committing a change from one branch another branch

2014-03-14 Thread Jagan Teki
Hi Brandon McCaig, On Thu, Mar 13, 2014 at 9:06 PM, Brandon McCaig wrote: > Jagan: > > On Thu, Mar 13, 2014 at 4:56 AM, Jagan Teki wrote: >> Hi, > > Hello, > >> I have two branches. >> - master-b1 >> - master-b2 >> >> Suppose I'm in ma

Committing a change from one branch another branch

2014-03-13 Thread Jagan Teki
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 Date: Thu Mar 13 00:48:44 2014 -0700 init.c Changed! $ git checkout master-b2 $