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

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 <arjun@abcd.com> Tested-by: Jagan Teki <jt...@openedev.com> Signed-off-by: Jagan Teki <jt...@openedev.com> Please share if

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

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 <sch...@linux-m68k.org> wrote: > Jagan Teki <jagannadh.t...@gmail.com> writes: > >> Out of which below three names are with same author which changed >> while submitted patches. >> 149 Jagan Teki >>

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 <sand...@crustytoothpaste.net> 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 >> >> $ .ma

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 repo 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

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

2014-06-27 Thread Jagan Teki
On Sat, Jun 21, 2014 at 4:00 AM, brian m. carlson sand...@crustytoothpaste.net 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. I presume here

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

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 bamcc...@gmail.com wrote: Jagan: On Thu, Mar 13, 2014 at 4:56 AM, Jagan Teki jagannadh.t...@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

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: 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] Jagan hi [23:40] == Cannot send to channel: #git Can any one help! On Fri, Mar 14, 2014 at 11:09 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Hi, I have two branch in one repo that I need to maintain for 2 different deliveries

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 andrew.k...@gmail.com wrote: On Fri, Mar 14, 2014 at 1:39 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Suppose developer send 10 patches on branch1 where are changes in terms of dir_version/ then I need to apply on my local repo branch1, till now

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 andrew.k...@gmail.com wrote: On Fri, Mar 14, 2014 at 4:01 PM, Jagan Teki jagannadh.t...@gmail.com wrote: On Sat, Mar 15, 2014 at 12:48 AM, Andrew Wong andrew.k...@gmail.com wrote: On Fri, Mar 14, 2014 at 1:39 PM, Jagan Teki jagannadh.t...@gmail.com

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 jagannadh.t...@gmail.com Date: Thu Mar 13 00:48:44 2014 -0700 init.c Changed! $ git checkout master