[git-users] Re: git gui equivalent to git checkout -b

2011-03-30 Thread Konstantin Khomoutov
On Mar 29, 10:00 pm, "Matt Seitz (matseitz)" wrote: > What is the git gui equivalent to "git checkout -b"? > > I have a working tree with changes that I don't want to commit to > "master" > yet.  So I want to create a new branch to contain my changes. > > If I go to "Branch->Checkout", I don't se

[git-users] Re: dcommit with conflict

2011-03-30 Thread Thomas Ferris Nicolaisen
Just for orientation, me and Sabba are sparring about how to setup and use a Git-SVN mirror. More details (explaining 'upci' and more) can be found here: http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html On Wednesday, March 30, 2011 12:25:50 AM UTC+2, Sabba Hillel wrote:

[git-users] Re: dcommit with conflict

2011-03-30 Thread Sabba Hillel
On Mar 30, 4:07 am, Thomas Ferris Nicolaisen wrote: > Just for orientation, me and Sabba are sparring about how to setup and use a > Git-SVN mirror. More details (explaining 'upci' and more)  can be found > here:http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html > > > > > >

Re: [git-users] Security experts from Cyberoam, Novell, Wipro, IBM all at one place @Security Conf (April 9th, Mumbai)

2011-03-30 Thread Rick DeNatale
On Wed, Mar 30, 2011 at 12:19 AM, Kavya Shree wrote: > SiliconIndia is 12-year old media firm. We publish two technology & > business magazines—one in the U.S and the other in India. Over the > last one decade, SiliconIndia.com has emerged as the most trusted > source for news and information for

[git-users] Re: dcommit with conflict

2011-03-30 Thread Thomas Ferris Nicolaisen
"Someone else does a commit to the svn repository of a change to README.txt" Is the above commit properly rebased into your local repository before you do the upci? Also, try again to do the manual git update-ref and git svn dcommit instead of using the "upci" alias. Could be that there is some

[git-users] git pull whithout download all file

2011-03-30 Thread vercetty92
Hello everybody, I search a way for retrieve a single file on a git client (solaris). My goal is to not download all the repository from the server. so the first time i do a|"git clone -n" and after if I want to download a single file I do "||git checkout HEAD name_of_file" but if another client

[git-users] Re: git pull whithout download all file

2011-03-30 Thread Thomas Ferris Nicolaisen
I think the easiest way would be to run instaweb in the git repository, and then get the file you want via http/wget. More info here: https://git.wiki.kernel.org/index.php/Gitweb -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post

[git-users] Re: dcommit with conflict

2011-03-30 Thread Sabba Hillel
I resynchronized the fetch and bare repositories to the main svn repository. On my local platform I checked out a different branch and then checked out the test branch to ensure that I got the correct files. I made sure to do a git pull --rebase --all The files were then fully synchronized. I t

[git-users] Re: git gui equivalent to git checkout -b

2011-03-30 Thread matseitz_cisco
On Mar 30, 12:15 am, Konstantin Khomoutov wrote: > On Mar 29, 10:00 pm, "Matt Seitz (matseitz)" > wrote: > > > What is the git gui equivalent to "git checkout -b"? > > > I have a working tree with changes that I don't want to commit to > > "master" > > yet.  So I want to create a new branch to

[git-users] Re: dcommit with conflict

2011-03-30 Thread Thomas Ferris Nicolaisen
You are right with one clarification: The svn repository must be set up to trigger a rebase in the fetching repository upon committing. I've found the best way to do this is to have a svn post-commit hook that triggers a job that does this (git svn rebase/fetch + push to bare repo). It is also

Re: [git-users] Re: git gui equivalent to git checkout -b

2011-03-30 Thread Konstantin Khomoutov
On Wed, 30 Mar 2011 10:14:05 -0700 (PDT) matseitz_cisco wrote: > > > What is the git gui equivalent to "git checkout -b"? > > > > > I have a working tree with changes that I don't want to commit to > > > "master" > > > yet.  So I want to create a new branch to contain my changes. > > > > > > If

[git-users] Re: git gui equivalent to git checkout -b

2011-03-30 Thread matseitz_cisco
On Mar 30, 11:40 am, Konstantin Khomoutov wrote: > On Wed, 30 Mar 2011 10:14:05 -0700 (PDT) > matseitz_cisco wrote: > > Are you also saying that the git gui "Branch->Create" command with the > > "Checkout After Creation" option enabled is the equivalent of "git > > checkout -b"? > > Instead of sp

[git-users] Re: dcommit with conflict

2011-03-30 Thread Sabba Hillel
On Mar 30, 1:43 pm, Thomas Ferris Nicolaisen wrote: > You are right with one clarification: The svn repository must be set up to > trigger a rebase in the fetching repository upon committing. > > I've found the best way to do this is to have a svn post-commit hook that > triggers a job that does