[git-users] Re: how to connect the two local machine in order use git

2013-06-06 Thread Manjunath Hv
Hi Philip, Please find the details below Machines : One is Windows 7 & other is windows XP Version : 1.8.1.msysgit.1 I can see the file as well as directories on other system. Will u please tell me how to check remote file permissions?? The error message is from git. The same message is co

Re: [git-users] Re: how to connect the two local machine in order use git

2013-06-06 Thread Konstantin Khomoutov
On Thu, Jun 06, 2013 at 12:09:57AM -0700, Manjunath Hv wrote: > Hi Philip, > > Please find the details below > > Machines : One is Windows 7 & other is windows XP > Version : 1.8.1.msysgit.1 > I can see the file as well as directories on other system. Will u please > tell me how to check

Re: [git-users] Help with getting desired git log output between two tags

2013-06-06 Thread Michael Haggerty
On 06/05/2013 04:25 AM, Git User List wrote: > Can't seem to make may email program draw nice ascii pics. Please see jpg > attached. > > Hi. What I am looking for is a way to list all > commits between two tags. Given the diagram below, commit (6) and (H) each > have a tag pointing to them. I want

Re: [git-users] list all the branch that contains commit title is "xxxx yyyy"

2013-06-06 Thread Michael Haggerty
On 06/04/2013 05:24 AM, lei yang wrote: > list all the branch that contains commit title is " " note: the > commit-id is not the same though > the commit content is the same in different branch I think that git log --all --no-walk --grep=" " does what you want. Michael --

[git-users] Re: how to connect the two local machine in order use git

2013-06-06 Thread Manjunath Hv
Hi , Will you please elaborate on this by taking example & also mentioning what & which commands are to be run on client as well on server. Most of the time we are using GIT GUI. It would be grateful if you give explanation by considering client & server architecture On Thursday, June 6, 201

[git-users] error: GIt has no installation candidate

2013-06-06 Thread Deepak Selvaraj
I am trying to install Openstack in my new virtual machine, but I am getting a error saying the package git is not available and it says package git has no installation candidate. But I already installed git using sudo apt get install git .. Could someone please help me sorting it out ? these

Re: [git-users] Re: how to connect the two local machine in order use git

2013-06-06 Thread Quark
you may want to read this http://stackoverflow.com/questions/377213/git-serve-i-would-like-it-that-simple > > From: Manjunath Hv >To: git-users@googlegroups.com >Sent: Thursday, 6 June 2013 3:54 PM >Subject: [git-users] Re: how to connect the two local machine

[git-users] Getting good compression

2013-06-06 Thread Dale R. Worley
I an working on a system to archive files for backup purposes. The current challenge is a Unix mailbox file which is about 100Mb. By its nature, new mail is added to the file at the end and most of that is rapidly deleted. The first 90%+ of the file is old mail that largely doesn't change. I pu

Re: [git-users] error: GIt has no installation candidate

2013-06-06 Thread Konstantin Khomoutov
On Thu, 6 Jun 2013 06:54:42 -0700 (PDT) Deepak Selvaraj wrote: > I am trying to install Openstack in my new virtual machine, but I am > getting a error saying the package git is not available and it says > package git has no installation candidate. But I already installed > git using sudo apt ge

[git-users] Problem with "git checkout --orphan"

2013-06-06 Thread Dale R. Worley
When you want to create a new branch that has no ancestors, you use "git checkout --orphan" to set the repository in a state where the next commit will have no parents. However, it appears that one can only do "git checkout --orphan" only if the *current* state will *not* create an orphan commit.

[git-users] Re: Problem with "git checkout --orphan"

2013-06-06 Thread Thomas Ferris Nicolaisen
On Thursday, June 6, 2013 8:51:50 PM UTC+2, Dale Worley wrote: > When you want to create a new branch that has no ancestors, you use > "git checkout --orphan" to set the repository in a state where the > next commit will have no parents. However, it appears that one can > only do "git checkout

Re: [git-users] Re: Problem with "git checkout --orphan"

2013-06-06 Thread John McKown
What I did, when I wanted to "initialize" some more-or-less empty branches was to have a single file in all of them. Called, cleverly, branch git init echo 'master' >branch git add . git commit -m 'master' git checkout --orphan b2 echo 'b2' >branch git add . git commit -m 'b2' # and so on And, if

Re: [git-users] Getting good compression

2013-06-06 Thread Martin Møller Skarbiniks Pedersen
On 6 June 2013 18:06, Dale R. Worley wrote: > I an working on a system to archive files for backup purposes. The > current challenge is a Unix mailbox file which is about 100Mb. By its > nature, new mail is added to the file at the end and most of that is > rapidly deleted. It sounds like you a

[git-users] how to protect my source while allowing a new developer to work

2013-06-06 Thread Peter Kellner
I've got a new developer who I'm concerned might hurt our git repository (by checking into master for example) if we give him r/w access to our bitbucket repo. I want him to be able to check in to his branch only and be able to merge master changes to his branch, but I don't want him to be abl

Re: [git-users] how to protect my source while allowing a new developer to work

2013-06-06 Thread benoît person
Hi >From what I know, git does not support branch permissions. The best way to deal with that kind of permissions-thingy is to create two repos : a main repo and a fork for your new developer. He would only have permissions to pull from the main repo but could do "pull-request" to the main repo. T

Re: [git-users] how to protect my source while allowing a new developer to work

2013-06-06 Thread Gergely Polonkai
Hello, git doesn't provide such thing by default. To achieve that, you should use external software, like gitosis or gitolite. Best, Gergely On 7 Jun 2013 00:42, "benoît person" wrote: > Hi > > From what I know, git does not support branch permissions. The best > way to deal with that kind of p

Re: [git-users] how to protect my source while allowing a new developer to work

2013-06-06 Thread Joe Cabezas
use any git workflow http://git-scm.com/book/en/Distributed-Git-Distributed-Workflows git is not centralized, so he cant mail you or something like that telling you to make a pull request.. (in github this is implemented very well) you have to become an integration manager 2013/6/6 Gergely Pol

[git-users] How to handle a frequently changed file that requires a compile that takes 20 mins

2013-06-06 Thread robe070
We are considering adopting git. We are currently using Vault from SourceGear. One of the issues with our source code is that there is one file that is critical to our development. If its changed in our working directory then the entire solution needs to be re-built. We currently avoid this an

[git-users] Clarification Regarding Git Commit Granularity

2013-06-06 Thread Greg Chetcuti
So, one thing I'm still a bit fuzzy on is the recommend granularity of commits, and I'm wondering if anyone can help me out. For example, let's say we're adding a new feature to a software application that's going to require two small updates to the code on 10 pages, what would the recommended

[git-users] Clarification Regarding Git Commit Granularity

2013-06-06 Thread Greg Chetcuti
One thing I'm still a bit fuzzy on is the recommended granularity of commits, and I'm wondering if anyone can help me out. For example, let's say we're adding a new feature to a software application that's going to require two small updates to the code on 10 pages, what would the recommended co

Re: [git-users] Clarification Regarding Git Commit Granularity

2013-06-06 Thread PJ Weisberg
On Jun 6, 2013 9:59 PM, "Greg Chetcuti" wrote: > > So, one thing I'm still a bit fuzzy on is the recommend granularity of commits, and I'm wondering if anyone can help me out. > > For example, let's say we're adding a new feature to a software application that's going to require two small updates