[git-users] How to rebase from a newer kernel tag ?

2012-06-14 Thread viva
Hi, We have developed the support of a platform on top of the kernel 3.0.6 based in our internal git server repository (got from Linux kernel source tree stable release 3.0.y maintained by Greg Kroah-Hartman git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git tracking branch

[git-users] Re: Applying licence (eg. GPL) to Git history

2012-06-14 Thread chrism0dwk
Great news, thanks for the advice! Chris -- You received this message because you are subscribed to the Google Groups Git for human beings group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/lf7sV_Hu_dUJ. To post to this group, send email to

[git-users] Re: How to rebase from a newer kernel tag ?

2012-06-14 Thread Thomas Ferris Nicolaisen
Sounds pretty straight forward, not accounting for any change conflicts that may arise: cd your-kernel-repo git remote add kernel-org [location of kernel.org repo] git fetch kernel-org git checkout -b rebasing-our-commits-on-top-of-v3034 git rebase

Re: [git-users] how to change the whole git tree to the patchsets

2012-06-14 Thread lei yang
On Thu, Jun 14, 2012 at 1:52 AM, Konstantin Khomoutov flatw...@users.sourceforge.net wrote: On Thu, 14 Jun 2012 01:03:27 +0800 lei yang yanglei.f...@gmail.com wrote: I want to change my whole tree to the patchset? which cmd can be used ? git format-patch --root Thanks This works well, I

[git-users] Re: Applying licence (eg. GPL) to Git history

2012-06-14 Thread P Rouleau
Hi, To add the LICENSE file in the root folder, it may be easier to commit the file to a new orphan branch (see git checkout --help) or you can checkout the first commit (with checkout -b) and amend it to add the LICENSE file. You may want to force a specific date to that commit so it appears

Re: [git-users] Applying licence (eg. GPL) to Git history

2012-06-14 Thread Tassilo Horn
Tassilo Horn tass...@member.fsf.org writes: Check out http://www.gnu.org/licenses/gpl-howto.html That says that you should add at least a copyright notice and statement of copying permission. Fiddeling with the history of each and every source file sounds a bit awkward. Maybe you could ask

Re: [git-users] Applying licence (eg. GPL) to Git history

2012-06-14 Thread Chris Jewell
Hi Tassilo, Thanks *very* much for the information! That's really very useful to me. Cheers, Chris On 14 Jun 2012, at 12:45, Tassilo Horn wrote: Tassilo Horn tass...@member.fsf.org writes: Check out http://www.gnu.org/licenses/gpl-howto.html That says that you should add at least a

Re: [git-users] GIT with limited CPU time?

2012-06-14 Thread Konstantin Khomoutov
On Thu, 14 Jun 2012 01:41:40 -0700 (PDT) renne renne.bart...@googlemail.com wrote: I'm new to GIT and this group, so a Hello to all! :) GIT is installed at a Shared Hoster for versioning the Web content. :) But the SSH access has a CPU time limit, too, which breaks push and pull. :( Is

[git-users] how to get the commit id from one file or multi file

2012-06-14 Thread lei yang
Hi List, Can we get the commit id list for one file or multifile? Lei -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com. To unsubscribe from this group, send email to

Re: [git-users] how to get the commit id from one file or multi file

2012-06-14 Thread Bryce Verdier
On 06/14/2012 08:33 AM, lei yang wrote: Hi List, Can we get the commit id list for one file or multifile? Lei What do you mean by commit id? In trying to save time I'm going to take a guess and then try to answer based on that assumption. There is a command called git-blame. You can use

Re: [git-users] how to get the commit id from one file or multi file

2012-06-14 Thread lei yang
On Thu, Jun 14, 2012 at 11:46 PM, Bryce Verdier bryceverd...@gmail.com wrote: On 06/14/2012 08:33 AM, lei yang wrote: Hi List, Can we get the commit id list for one file or multifile? Lei What do you mean by commit id? I mean the file in git tree has lots of commit, I want to get the

[git-users] how to get the formated patches from the merge id

2012-06-14 Thread lei yang
Hello list: eg: commit 0e93b4b304ae052ba1bc73f6d34a68556fe93429 Merge: b724cc1 51bfd29 how can I from 0e93b4b304ae052ba1bc73f6d34a68556fe93429 to get the formated patch ? (I know we can do git format-patch b724cc1..51bfd29, but how to from 0e93b4b304ae052ba1bc73f6d34a68556fe93429 to get?) Lei

[git-users] how to diff specifc file for different tags or branch

2012-06-14 Thread lei yang
Hi list As the title, if I have two branch A and B, how could I diff the file test.c for A and B Lei -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com. To unsubscribe from

Re: [git-users] how to get the commit id from one file or multi file

2012-06-14 Thread Konstantin Khomoutov
On Thu, 14 Jun 2012 23:53:30 +0800 lei yang yanglei.f...@gmail.com wrote: Can we get the commit id list for one file or multifile? Lei What do you mean by commit id? I mean the file in git tree has lots of commit, I want to get the commit list for this file $ git rev-list --all