[git-users] Re: gitosis problems

2013-01-21 Thread robertgenito
i wish i knew. gitosis makes me sad sometimes... On Tuesday, March 17, 2009 12:10:33 PM UTC-4, gte351s wrote: I'm trying to set up gitosis on my office server, but ran into some problems when I tried to push changes. Setup went fine, and I was able to clone gitosis-admin.git repository.

[git-users] Re: gitosis problems

2013-01-21 Thread robertgenito
wow i just realized you posted this in 2009 @_@ the solution is to fix the permissions in the actual repository folder (on the server). since we are using gitosis, the repository (and ALL subfolders/subfiles) must belong to the git user. do something like... # chown -R git:git

[git-users] Re: git push failing with change closed

2013-01-21 Thread Thomas Ferris Nicolaisen
On Sunday, January 20, 2013 6:57:08 PM UTC+1, python...@gmail.com wrote: @Thomas - I already tried removing the change-ed from the commit message,editing the message but a new change-id is not being generated automatically...do you have any other suggestions? Follow the instructions here:

[git-users] Re: Pull fast forward error even though pull says up to date

2013-01-21 Thread Thomas Ferris Nicolaisen
On Sunday, January 20, 2013 7:50:30 PM UTC+1, J K wrote: Tanks Thomas, your advice was spot on. I needed to configure Gerrit. It would have been nice if Git had actually given me an error message that was less cryptic. One of the serious problems with git. Well, the problem is more

[git-users] Interesting(?) article on setting up a small, local, git server for small development team.

2013-01-21 Thread John McKown
http://www.howtoforge.com/debian-wheezy-local-git-server-with-git-lite-workflow quote This howto describes a shared local *git* [1] server setup for a small team. This is a repository layout that is familiar to anyone used to working with a traditional version control system. One of the

[git-users] which commit ever change FULL_OPTIMIZATION in this file

2013-01-21 Thread lei yang
Hi experts, lyang001@lyang0-9010:~/kvm_32/layers/oe-core$ git blame -c meta/conf/bitbake.conf 9cb71137 meta/conf/bitbake.conf (Khem Raj 2011-03-17 16:54:30 -0700 524) FULL_OPTIMIZATION = -O2 -pipe ${DEBUG_FLAGS} lyang001@lyang0-9010:~/kvm_32/layers/oe-core$ git show 9cb71137 commit

Re: [git-users] which commit ever change FULL_OPTIMIZATION in this file

2013-01-21 Thread Konstantin Khomoutov
On Tue, 22 Jan 2013 00:46:55 +0800 lei yang yanglei.f...@gmail.com wrote: lyang001@lyang0-9010:~/kvm_32/layers/oe-core$ git blame -c meta/conf/bitbake.conf 9cb71137 meta/conf/bitbake.conf (Khem Raj 2011-03-17 16:54:30 -0700 524) FULL_OPTIMIZATION = -O2 -pipe ${DEBUG_FLAGS}

Re: [git-users] Re: [Ubuntu 12.04 LTS] [git version 1.7.9.5] how to update to 1.8.1.1?

2013-01-21 Thread Jesús García Crespo
Hi Luis, Peter van der Does is maintaining a PPA that worked great for me. https://launchpad.net/~pdoes/+archive/ppa Regards, On Sun, Jan 20, 2013 at 4:40 AM, Luis M. Alonso jipal...@si.ehu.es wrote: Thanks! On Friday, January 18, 2013 11:00:51 AM UTC+1, Luis M. Alonso wrote: In [Ubuntu

[git-users] Trying to convert svn repos to Git repos

2013-01-21 Thread waas.nett
Hi there I have started recently to use Git. Since I have been using svn for a couple of year I would like to convert those svn repos including their history to Git repos. I have converted already some repos, which is certainly time-consuming, but it seems to work. Unfortunately, I have now

Re: [git-users] Trying to convert svn repos to Git repos

2013-01-21 Thread Philip Oakley
My quick web search found http://julipedia.meroh.net/2012/02/converting-subversion-repository-to-git.html The only little problem is that git svn does not recognize Subversion tags as such and therefore converts them to Git branches instead of tags. Is that part of the problem? Or is it that

Re: [git-users] Re: [Ubuntu 12.04 LTS] [git version 1.7.9.5] how to update to 1.8.1.1?

2013-01-21 Thread Serge Matveenko
On Mon, Jan 21, 2013 at 11:21 PM, Jesús García Crespo je...@sevein.com wrote: Peter van der Does is maintaining a PPA that worked great for me. https://launchpad.net/~pdoes/+archive/ppa There is ppa supported by git-core team also. https://launchpad.net/~git-core/+archive/ppa for stable

[git-users] Git on Windows, permission denied when directory structure does not match between branches

2013-01-21 Thread Donald Blodgett
I am on Windows 7 and every time I switch to a branch that does not have the same directory structure as the branch I was in I get permission denied errors when ever I attempt to then do a pull, merge, or commit. If I attempt to access the directory through other means I get the same error

Re: [git-users] RE

2013-01-21 Thread John McKown
Does anybody who is the least concerned about hacking ever go to a web site in an email such as this? If so, I have some wonderful bottom land in Louisiana for you. (bottom of the swamp, that is. grin/). On Mon, Jan 21, 2013 at 2:22 PM, Mark Janssen dreamingforw...@gmail.com wrote: elided http

Re: [git-users] Trying to convert svn repos to Git repos

2013-01-21 Thread John McKown
If the problem is that you type in something like: git svn clone svn.repo have you tried: git svn clone 'svn.repo ' put the repo name inside ' marks and put in the trailing blank. If you want a equivalent, but more esoteric command: git svc clone svn.repo\ with a space after the \ (aka back

Re: [git-users] Git on Windows, permission denied when directory structure does not match between branches

2013-01-21 Thread Konstantin Khomoutov
On Mon, Jan 21, 2013 at 01:13:37PM -0800, Donald Blodgett wrote: I am on Windows 7 and every time I switch to a branch that does not have the same directory structure as the branch I was in I get permission denied errors when ever I attempt to then do a pull, merge, or commit. If I attempt

Re: [git-users] RE

2013-01-21 Thread Konstantin Khomoutov
On Mon, Jan 21, 2013 at 03:24:09PM -0600, John McKown wrote: Does anybody who is the least concerned about hacking ever go to a web site in an email such as this? If so, I have some wonderful bottom land in Louisiana for you. (bottom of the swamp, that is. grin/). It's quite improbable that a

Re: [git-users] Git on Windows, permission denied when directory structure does not match between branches

2013-01-21 Thread John McKown
I'm a LInux bigot, but use Windows when forced (at work). I am wondering if perhaps you should git checkout ... to switch to the branch with problems. Then use Windows Explorer to fix the permissions. Actually, this is what I think you're doing now. After this, then in each of the directories

Re: [git-users] which commit ever change FULL_OPTIMIZATION in this file

2013-01-21 Thread lei yang
seems not work for me lyang001@lyang0-9010:~/kvm_32/layers/oe-core$ git blame meta/conf/bitbake.conf |grep FULL_OPTIMIZATION 9cb71137 meta/conf/bitbake.conf (Khem Raj 2011-03-17 16:54:30 -0700 524) FULL_OPTIMIZATION = -O2 -pipe ${DEBUG_FLAGS} 2864ff6a meta/conf/bitbake.conf

[git-users] Re: Trying to convert svn repos to Git repos

2013-01-21 Thread Thomas Ferris Nicolaisen
On Monday, January 21, 2013 9:10:07 PM UTC+1, waas.nett wrote: Hi there I have started recently to use Git. Since I have been using svn for a couple of year I would like to convert those svn repos including their history to Git repos. I have converted already some repos, which is