Re: [git-users] Why do git log and git diff show different things on same two SHA's?

2013-01-29 Thread Konstantin Khomoutov
On Mon, Jan 28, 2013 at 10:46:06PM -0800, rridp...@transydian.com wrote: I would think that when I run a git diff on two specific SHA's it would have the same output as a git log with the same two SHA's when run with the --name-status. How did the file get changed if it wasn't done as part

Re: [git-users] e-git

2013-01-25 Thread Konstantin Khomoutov
On Thu, Jan 24, 2013 at 06:44:33PM -0800, adri...@localhost8080.com.br wrote: How can I make a merge in eclipse e-git? The link Mark as merged doesn't works.. Nothing changes when I clicked this link... I don't know anything about EGIT, so can't really help with merging, but I suppose that

Re: [git-users] back to old version

2013-01-25 Thread Konstantin Khomoutov
On Thu, 24 Jan 2013 21:16:56 -0600 John McKown john.archie.mck...@gmail.com wrote: Today I commited two Java classes, but I didn't push.. how can I exclude my commit? I want my code like before my commit... I use e-git in eclipse.. but i can use git command line too.. git reset HEAD^

Re: [git-users] Re: How to convert SVN tags to Git

2013-01-24 Thread Konstantin Khomoutov
On Thu, Jan 24, 2013 at 01:37:54PM -0800, Luís de Sousa wrote: For future reference, the full account of how dealt with this issue can be read my blog[1]. Thank you all for the guidance to this solution, Thanks for summarising and sharing. That's a really good practice. --

Re: [git-users] How to convert SVN tags to Git

2013-01-22 Thread Konstantin Khomoutov
On Tue, 22 Jan 2013 04:53:30 -0800 (PST) Luís de Sousa luis.a.de.so...@gmail.com wrote: Hence git-svn creates one remote branch in your local repository for each tag in the Subversion repository. [...] As I wrote initially, *git svn clone* doesn't create any branches: $ git branch -r

Re: [git-users] Re: How to convert SVN tags to Git

2013-01-22 Thread Konstantin Khomoutov
On Tue, 22 Jan 2013 05:44:17 -0800 (PST) Luís de Sousa luis.a.de.so...@gmail.com wrote: [...] Now the issue is that I have no master branch, but all the oldre branches cloned. Can I just rename the most recent branch and delete the older branches? This is a rather philosophical question. The

Re: [git-users] Storing extra files for release versions.

2013-01-22 Thread Konstantin Khomoutov
On Tue, Jan 22, 2013 at 10:14:12PM -0800, Rahul Gupta wrote: This is probably a hangover from SVN habits but still I would like the Git way doing this. Normally using SVN, when I work on a latex file, I store the pdf generated in my Tag folder along with latex file. There is no concept of

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] 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] Re: git push failing with change closed

2013-01-20 Thread Konstantin Khomoutov
On Sun, Jan 20, 2013 at 09:57:08AM -0800, python.pro...@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? I have one suggestion: could

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Sat, 19 Jan 2013 00:37:20 +0800 lei yang yanglei.f...@gmail.com wrote: git config --global sendemail.smtppass this will display password in .git config can we avoid this ? Yes, do not keep passwords in your configuration files. --

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Sat, 19 Jan 2013 01:08:47 +0800 lei yang yanglei.f...@gmail.com wrote: git config --global sendemail.smtppass this will display password in .git config can we avoid this ? Yes, do not keep passwords in your configuration files. but if we don't put it in the configuration

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Fri, 18 Jan 2013 12:18:00 -0500 wor...@alum.mit.edu (Dale R. Worley) wrote: From: lei yang yanglei.f...@gmail.com git config --global sendemail.smtppass this will display password in .git config can we avoid this ? The value is in a configuration file which the user can

Re: [git-users] How to apply a commit present inthe history on the HEAD

2013-01-17 Thread Konstantin Khomoutov
On Thu, Jan 17, 2013 at 11:36:14AM -0800, python.pro...@gmail.com wrote: 1. I am trying to apply a commit which was done a while back on the HEAD. git log --oneline shows the following and lets say I want to apply the commit 2618b13 on the HEAD. 2617b13 2614b13 2611b13 2618b13 2618b13

Re: [git-users] git request-pull? how to?

2013-01-15 Thread Konstantin Khomoutov
On Tue, 15 Jan 2013 19:30:04 +0800 lei yang yanglei.f...@gmail.com wrote: I always see something like http://comments.gmane.org/gmane.linux.drivers.video-input-infrastructure/54774 Looks like the result of `git format-patch` with the --cover-letter command-line argument used. --

Re: [git-users] Re: Find Git repository mapping

2013-01-15 Thread Konstantin Khomoutov
On Tue, 15 Jan 2013 04:56:31 -0800 (PST) Floriano Fauzzi fauzzi.flori...@gmail.com wrote: I want to know what is the file where, Git portable or Git stand alone software, store the mapping between the clone repository ( on pc ) and the web repository. I need this information because I

Re: [git-users] Git attributes smudge/clean filters

2013-01-15 Thread Konstantin Khomoutov
On Tue, 15 Jan 2013 08:17:50 -0800 (PST) Russell im.russell.smi...@gmail.com wrote: [...] That way your repository always keeps normalized blobs. I agree that this is exactly what I would do to mimic RCS behaviour. But I am deliberately trying not to for the reason described below:

Re: [git-users] rebase to a specific commit

2013-01-13 Thread Konstantin Khomoutov
On Sun, Jan 13, 2013 at 08:21:31PM -0800, python.pro...@gmail.com wrote: I have the following recent commits when I do git log --oneline...I want to rebase to 8ec2027,I tried some rebase commands that didnot work..what is the exact command to do this? 2503013 code: cs release 1.2.3.47

Re: [git-users] Error:non-monotonic index after failed recursive sed command

2013-01-13 Thread Konstantin Khomoutov
On Sun, Jan 13, 2013 at 11:19:53PM -0800, George Karpenkov wrote: Hi All, I've managed to corrupt my very valuable repository with a recursive sed which went wrong. I wanted to convert all tabs to spaces with the following command: find ./ -name '*.*' -exec sed -i 's/\t//g' {} \;

Re: [git-users] Re: git list files

2013-01-12 Thread Konstantin Khomoutov
On Fri, 11 Jan 2013 23:16:08 -0800 (PST) Blind stoycho.slept...@gmail.com wrote: In other words, do you think something like: ls -1 | awk '{git log -1 --pretty=format:\%ci %h %an\ -- $1 | getline g; print g, $1; close(git log -1 --pretty=format:\%ci %h %an \ -- $1)}' is efficient

Re: [git-users] git list files

2013-01-12 Thread Konstantin Khomoutov
On Sat, 12 Jan 2013 14:47:03 +0400 Konstantin Khomoutov flatw...@users.sourceforge.net wrote: [...] You could roll your own history walking using calls to the `git cat-file` plumbing command [...] You could first try a no-brainer approach though: start from the specified revision (say, HEAD

[git-users] Re: git checkout bug on Win7 x64

2013-01-11 Thread Konstantin Khomoutov
On Fri, 11 Jan 2013 11:30:01 +0400 Ishayahu Lastov meoc...@mail.ru wrote: [...] As I understand after last git checkout in git status I should see that I gave no changes. It looks like an bug, isn't it? Looks like an EOL-conversion problem rather typical to Windows, see

Re: [git-users] Git doesn't work with Sock5 proxy on MAC

2013-01-11 Thread Konstantin Khomoutov
On Thu, 10 Jan 2013 22:14:10 -0800 (PST) Herry Wang tech.he...@gmail.com wrote: [...] git clone http://herry@stash.somesite/a.git Cloning into 'a'... error: Empty reply from server while accessing git/info/refs?service=git-upload-pack fatal: HTTP request failed [...] Bug reports should

Re: [git-users] Git attributes smudge/clean filters

2013-01-11 Thread Konstantin Khomoutov
On Fri, Jan 11, 2013 at 11:56:43AM -0800, Russell wrote: I am trying to implement a filter that updates a Last modified: date field in a source file comment header on commit. From the reading I've done so far this seems to be a different approach to the usual mimic RCS behaviour approach

Re: [git-users] can't have a directory named bundle?

2013-01-09 Thread Konstantin Khomoutov
On Tue, Jan 08, 2013 at 06:34:24PM -0800, msoulier wrote: I happened to create a subdirectory in my working set called bundle, and I noticed that git ignored it. Why is that? And what if I need such a directory? I suppose essentially what you're seeing is Git not showing you an *empty*

Re: [git-users] Can Git do all of this?

2013-01-09 Thread Konstantin Khomoutov
On Tue, 8 Jan 2013 15:51:18 -0800 (PST) Greg i.am...@comcast.net wrote: [...] 1. A general architecture as follows: a. Distributed repository model where local branches are pemitted and all repositories are kept in sync with reasonable latency (I believe Git does this; please correct me

Re: [git-users] Can Git do all of this?

2013-01-09 Thread Konstantin Khomoutov
On Wed, Jan 09, 2013 at 10:00:07AM -0800, Greg wrote: [...] WRT 1.b: I am surprised by your comment that private Git repos purchased from Github are not secure... they purport to be authenticated and use SSL connections. Other than the employees at Github, who's prying eyes would be able

Re: [git-users] Git off-site security

2013-01-09 Thread Konstantin Khomoutov
On Wed, Jan 09, 2013 at 02:51:57PM -0600, John McKown wrote: Thanks for explaining. I guess the way to do a cloud backup would be to do a git archive and then encrypt and scp the archive to the cloud. That wouldn't preserve the history as `git archive` just extracts the tree from the

Re: [git-users] download a directory or file without clone the whole tree

2013-01-08 Thread Konstantin Khomoutov
On Mon, 7 Jan 2013 10:39:53 +0800 lei yang yanglei.f...@gmail.com wrote: I find my treeA want to have another treeB's dir, I don't want to clone the whole treeB, I don't know can we do it with git the get treeB's dir You can't fetch just a directory from a remote tree as Git does not

Re: [git-users] Issue in checking out repo in GIT in eclipse

2013-01-08 Thread Konstantin Khomoutov
On Mon, 7 Jan 2013 19:54:49 -0800 (PST) gaug...@gmail.com wrote: [...] I have installed EGIT plugin my eclipse. I tried checking importing the files from using the plugin by choosing the URI option in eclipse and got an Unknown Host Exception. These are the setting i gave: 1) URI :

Re: [git-users] Asyncronous post-receive

2013-01-07 Thread Konstantin Khomoutov
On Mon, Jan 07, 2013 at 02:42:46AM -0800, kumar wrote: Is it possible to have asynchronous post-receive. I want to run a mirror script which will send a push request to the mirror server. Currently when i do a push to the remote server I have to wait for it push to the mirror server also.

Re: [git-users] Help! Git pull deleted files.

2012-12-29 Thread Konstantin Khomoutov
On Sat, 29 Dec 2012 00:16:37 - Philip Oakley philipoak...@iee.org wrote: My guess would that you did a 'commit amend' (or small rebase) locally that slightly changed your line of development relative to your last push. As far as the git sha1 hash is concerned a slight change and a

Re: [git-users] Help! Git pull deleted files.

2012-12-28 Thread Konstantin Khomoutov
On Fri, 28 Dec 2012 08:09:38 -0800 (PST) Trans transf...@gmail.com wrote: Hi, I just screwed my repo and need advice on how to get it back. Nothing is really screwed, see below. I have been doing some major work on a project, and was finally ready to push it. Foolish me did the work in

Re: [git-users] Re: Keep local repo small

2012-12-28 Thread Konstantin Khomoutov
On Fri, 28 Dec 2012 06:16:59 -0800 (PST) ericpar e...@eparent.info wrote: [...] But my colleagues wanted to have a GUI interface. I suggested them to try out TortoiseGit (I thought it was a natural replacement from TortoiseSVN) and they've been using it for about 6 months. We've been

Re: [git-users] Some questions about plumbing commands

2012-12-28 Thread Konstantin Khomoutov
On Thu, 27 Dec 2012 17:46:21 -0800 (PST) Mark Green drmoos...@gmail.com wrote: I've been reading through the Pro Git book online and it's very interesting, but I'm wondering about some of the plumbing commands and how some of the things Git does can be simulated. For example: - If you are

Re: [git-users] Linux git clone throws error: RPC failed

2012-12-27 Thread Konstantin Khomoutov
On Wed, 26 Dec 2012 09:32:59 -0800 (PST) Prabu RM pr...@vembu.com wrote: This is the error we face while doing git clone in Linux: error: RPC failed Any idea? This is the command we used to. git clone http://user@gitserver/path/module.git You tell us almost nothing of interest to try

Re: [git-users] git config fetch.recurseSubmodules true git pull doesn't update the submodule

2012-12-26 Thread Konstantin Khomoutov
On Wed, 26 Dec 2012 12:49:43 +0800 lei yang yanglei.f...@gmail.com wrote: I want others when they git pull it also update the submoudles .but below two ways don't work for me 1) git config fetch.recurseSubmodules true git pull 2) git config alias.pullall '!git pull git submodule

Re: [git-users] git config fetch.recurseSubmodules true git pull doesn't update the submodule

2012-12-26 Thread Konstantin Khomoutov
On Wed, 26 Dec 2012 21:47:42 +0800 lei yang yanglei.f...@gmail.com wrote: [...] git config alias.pullall '!git pull git submodule update --init --recursive' it works with git pullall but I don't know how let it work with git pull git config alias.pull '!git pull git submodule

Re: [git-users] git reset changes something?

2012-12-25 Thread Konstantin Khomoutov
On Mon, 24 Dec 2012 09:51:19 -0800 (PST) Javier Garcia tirengar...@gmail.com wrote: in the man of git reset it says: * git-reset - Reset current HEAD to the specified state* So..what happen if i dont specify any state? *something* changes? The problem with understanding `git reset`

Re: [git-users] How to participate git devolopment

2012-12-25 Thread Konstantin Khomoutov
On Mon, 24 Dec 2012 20:51:36 -0800 (PST) shia zhabgyuan1...@gmail.com wrote: I have used git for a few weeks,and for curiosity I download it's source code When look through it,I find that maybe a little difficult for lacking of an architecture in my mind. How can I grasp the main line of

Re: [git-users] Keep local repo small

2012-12-24 Thread Konstantin Khomoutov
On Sun, 23 Dec 2012 12:57:55 -0800 (PST) Francesco Rugiano frarug...@gmail.com wrote: [...] Now, in order to keep the local repositories small, i wanted to remove committs A, B and C. I wanted, however, to keep them on the remote repository, in order to be able to revert to them in the

Re: [git-users] Keep local repo small

2012-12-24 Thread Konstantin Khomoutov
On Sun, 23 Dec 2012 12:57:55 -0800 (PST) Francesco Rugiano frarug...@gmail.com wrote: [...] Now, in order to keep the local repositories small, i wanted to remove committs A, B and C. I wanted, however, to keep them on the remote repository, in order to be able to revert to them in the

Re: [git-users] GIT get corrupted on lustre filesystem

2012-12-23 Thread Konstantin Khomoutov
On Sun, 23 Dec 2012 07:17:30 -0800 (PST) Eric Chamberland eric.chamberl...@gmail.com wrote: we are experiencing many problemes like those described here: http://thread.gmane.org/gmane.comp.file-systems.lustre.user/12093 Does anyone has an idea on how to compile/configure GIT ti have it

Re: [git-users] How to install git on CentOS5 without root access?

2012-12-21 Thread Konstantin Khomoutov
On Thu, 20 Dec 2012 15:10:44 -0500 Eric Benzacar e...@benzacar.ca wrote: HTTP 401 is an 'unauthorized' message, it sounds like user 'eric' doesn't have authority to clone https://git.assembla.com/myproj.git. Perhaps the wrong password or that user simply isn't allowed to access that

Re: [git-users] How to install git on CentOS5 without root access?

2012-12-21 Thread Konstantin Khomoutov
On Thu, 20 Dec 2012 15:10:44 -0500 Eric Benzacar e...@benzacar.ca wrote: [eric git]$ git clone https://e...@git.assembla.com/myproj.git Cloning into 'myproj'... Password for 'https://e...@git.assembla.com https://e...@git.assembla.com/': error: RPC failed; result=22, HTTP code =

Re: [git-users] How to install git on CentOS5 without root access?

2012-12-20 Thread Konstantin Khomoutov
On Thu, 20 Dec 2012 08:25:12 -0800 (PST) ebenza...@gmail.com wrote: I'm trying to add git functionality to a production CentOS 5.5 system that has no development tools (since it is a production system). So I don't have access to make/gcc/etc. I do not have root access, and for obvious

Re: [git-users] How to install git on CentOS5 without root access?

2012-12-20 Thread Konstantin Khomoutov
On Thu, 20 Dec 2012 12:31:04 -0500 Eric B ebenza...@gmail.com wrote: Are you able to run `git init`, `git clone` `git fetch`? If they fail, then how? (Please, cite the full error output). Well, none of the man pages work (which is an annoyance, but not the end of the world). They were

Re: [git-users] Is it possible cp some file from one branch to another without switch branch

2012-12-19 Thread Konstantin Khomoutov
On Tue, 18 Dec 2012 21:24:03 -0500 wor...@alum.mit.edu (Dale R. Worley) wrote: [...] | git-blame - Show what revision and author last modified each | line of a file That's great! ... But the existence of git-blame means that git can, *in practice*, trace the history of an individual

Re: [git-users] Is it possible cp some file from one branch to another without switch branch

2012-12-18 Thread Konstantin Khomoutov
On Tue, 18 Dec 2012 10:37:47 -0500 wor...@alum.mit.edu (Dale R. Worley) wrote: In general, it's impossible to copy a file from one branch to another, preserving its history. It must be *possible* to do that: You could do a merge between the head of A and the head of B, where all of the

Re: [git-users] Is it possible cp some file from one branch to another without switch branch

2012-12-18 Thread Konstantin Khomoutov
On Tue, 18 Dec 2012 07:47:22 -0800 (PST) John McKown john.archie.mck...@gmail.com wrote: What about something like the following (on Linux) git checkout -b newbranch git ls-files | fgrep -v 'file.to.keep' | while read i;do git rm $i;done # newbranch now only contains file.to.keep 1) Only

Re: [git-users] Is it possible cp some file from one branch to another without switch branch

2012-12-18 Thread Konstantin Khomoutov
On Tue, Dec 18, 2012 at 02:54:54PM -0500, Dale R. Worley wrote: Since Git only records snapshots of whole trees and does not really track individual files, there's no such *concept* as the history of an individual file -- it might appear to exist (thanks to the `git log ... filename`

Re: [git-users] Is it possible cp some file from one branch to another without switch branch

2012-12-17 Thread Konstantin Khomoutov
On Mon, 17 Dec 2012 04:58:53 -0800 lei yang yanglei.f...@gmail.com wrote: now I'm in the branch A, I want to copy some file from branch B to A any help? Note that the already proposed git checkout $branch -- $filename git add $filename approach does not copy the file's history recorded in

Re: [git-users] Re: Looking for C# Git library

2012-12-17 Thread Konstantin Khomoutov
On Sun, 16 Dec 2012 22:18:51 -0800 (PST) Thomas Ferris Nicolaisen tfn...@gmail.com wrote: [...] Is there anything comparable for Git that I can pull from NuGet or some other source? Libgit2 http://libgit2.github.com/ has bindings in C#https://github.com/libgit2/libgit2sharp. It's also

Re: [git-users] git help about git merge to a specific dir and keep the commit log

2012-12-10 Thread Konstantin Khomoutov
On Mon, 10 Dec 2012 16:35:58 +0800 lei yang yanglei.f...@gmail.com wrote: I have two tree A and B, A: git://github.com/lei/A.git B: git://github.com/lei/B.git B is like [lyang0@ubuntu B]$ ls benchmark box-opening kvm I want merge A tree to B, 1) put A's content to the kvm directory

Re: [git-users] git push stopped on windows

2012-12-07 Thread Konstantin Khomoutov
On Fri, 7 Dec 2012 01:19:09 -0800 (PST) jxck block.rxckin.be...@gmail.com wrote: [...] but, I can't push from windows. [...] http://thread.gmane.org/gmane.comp.version-control.git.user/3757/focus=3762 oh It seems I need to use older version. No, it means you'd better off using another

Re: [git-users] curiosity: why are files in .git/objects marked writable?

2012-12-07 Thread Konstantin Khomoutov
On Fri, 7 Dec 2012 08:48:41 -0800 (PST) John McKown john.archie.mck...@gmail.com wrote: That's the question. Or I really am not understanding what all is in there. But what I understand (if correct) is that the files in .git/objects are such that the subdirectory name is the first two hex

Re: [git-users] GIT actions from bugzilla server to origin

2012-12-05 Thread Konstantin Khomoutov
On Tue, 4 Dec 2012 10:43:32 -0800 (PST) Jeffrey Marans jmar...@gmail.com wrote: I'm working on transitioning about 15 CVS modules to GIT repositories and I think I've got a handle on how to translate the cvs triggers to make them run on the git origin. I have to create triggers that run

Re: [git-users] Re: GIT actions from bugzilla server to origin

2012-12-05 Thread Konstantin Khomoutov
On Wed, 05 Dec 2012 06:31:34 -0600 Tim Chase g...@tim.thechases.com wrote: [...] If your Git origin server can be accessed via SSH, you can perform any sugrery on the remote repository using nothing but the SSH client on the bugzilla side as SSH is a *shell.* Just as a side note, some

Re: [git-users] GIT actions from bugzilla server to origin

2012-12-05 Thread Konstantin Khomoutov
On Wed, 5 Dec 2012 05:10:30 -0800 (PST) Jeffrey Marans jmar...@gmail.com wrote: I thought the only possible solution was to have a complete set of repositories local to the bugzilla server, as per your first suggestion. Thanks for pointing out a far more practical method. In fact, I suspect

Re: [git-users] any way to re-release git's block sha1 implementation under a different license?

2012-12-05 Thread Konstantin Khomoutov
On Wed, Dec 05, 2012 at 08:59:22PM -0800, Liu Liu wrote: I am reaching out because in my personal project ( https://github.com/liuliu/ccv), I used the block sha1 implementation ( https://github.com/git/git/blob/master/block-sha1/sha1.c) in git. It is a fast, generalized and standalone

Re: [git-users] Can git handle huge repository

2012-12-03 Thread Konstantin Khomoutov
On Wed, 28 Nov 2012 16:36:37 -0800 (PST) kumar t12...@gmail.com wrote: I have a 20 GB project and when i try to push it into remote git using http i fails. I get the following error [...] I even tried git config http.postBuffer 524288000 and it did not help. as an alternative i copied the

Re: [git-users] xargs on windows doesnt work

2012-11-29 Thread Konstantin Khomoutov
On Thu, 29 Nov 2012 01:30:39 -0800 (PST) immo immo.wet...@adtran.com wrote: I was trying to write a git hook with the build in “unix” commands from git. But xargs doesn’t work as expected git version 1.8.0.msysgit.0 (C:\Program Files (x86)\Git\bin) C:\Program Files (x86)\Git\binecho

Re: [git-users] Re: permanent branch deletion on origin

2012-11-27 Thread Konstantin Khomoutov
On Mon, Nov 26, 2012 at 09:37:26AM -0800, Jeffrey Marans wrote: Thanks for the details, and your patience. I think I'm going to have to read the manual Unfortunately, the manual is, well, a reference. It means it is *precise* but is as fun to read as a judge's ruling, and this means people

Re: [git-users] permanent branch deletion on origin

2012-11-26 Thread Konstantin Khomoutov
On Mon, 26 Nov 2012 07:06:35 -0800 (PST) Jeffrey Marans jmar...@gmail.com wrote: I've done a cvs2git conversion of a number of cvs modules and was unable to exclude the private working branches, PWB*. I'd like to delete them from the git repos and have tried the following, but the branches

Re: [git-users] does git smart http use gzip?

2012-11-24 Thread Konstantin Khomoutov
On Fri, 23 Nov 2012 20:58:35 -0800 (PST) kumar t12...@gmail.com wrote: does git smart http use gzip? As far as I understand its inner workings, Git's smart HTTP transport spawns `git upload-pack` on the server and `git receive-pack` on the client, and then these programs communicate with each

Re: [git-users] CRLF / LF

2012-11-23 Thread Konstantin Khomoutov
On Fri, 23 Nov 2012 07:49:55 -0800 (PST) fpefpe fpespos...@gmail.com wrote: Hello -- I just download the latest tarball for emacs -- I I tried to compile it for win xp with and older msvc compiler, but there were errors I then wanted to track my changes / fixes, so I created a GIT

Re: [git-users] Re: /opt/git folder

2012-11-22 Thread Konstantin Khomoutov
On Thu, 22 Nov 2012 07:42:59 -0600 Tim Chase g...@tim.thechases.com wrote: So, to answer the original question, Git *might* be installed under /opt, when doing manual compilation, but this is somewhat odd due to a number of reasons--it's always better to first try installing Git from a

Re: [git-users] replicated git hosting

2012-11-19 Thread Konstantin Khomoutov
On Sun, 18 Nov 2012 21:33:40 -0800 (PST) Thomas Koch tho...@koch.ro wrote: what would you call best practice for a highly available git hosting setup? We have servers in 3 datacenters. At best a git push should only complete if the data has been stored in at least two datacenters. The git

Re: [git-users] How merge two or more commits??

2012-11-18 Thread Konstantin Khomoutov
On Sun, Nov 18, 2012 at 03:05:43PM -0800, Cesar Casasola wrote: In this case there are two commits $ git log --graph --oneline --decorate --all [...] How I can to merge the commits *261f502* and *9d62a1f?* If they were three or more commits? The graph tree appears to be completely

Re: [git-users] Error while pushing Git repository to Github

2012-11-16 Thread Konstantin Khomoutov
On Fri, Nov 16, 2012 at 12:05:58PM +0530, Ankita Poovaiah wrote: I have created ssh keys. While trying to push git repository to github it is showing this error git push -u origin master fatal: unable to connect to github.com: github.com: Servname not supported for ai_socktype. What do

[git-users] Re: Error while pushing Git repository to Github

2012-11-15 Thread Konstantin Khomoutov
четверг, 15 ноября 2012 г., 11:08:27 UTC+4 пользователь Ankita Poovaiah написал: I have created ssh keys. While trying to push git repository to github it is showing this error git push -u origin master fatal: unable to connect to github.com: github.com: Servname not supported for

Re: [git-users] Re: Error while pushing Git repository to Github

2012-11-15 Thread Konstantin Khomoutov
On Thu, 15 Nov 2012 16:10:22 +0530 Ankita Poovaiah ankitapoova...@gmail.com wrote: I have created ssh keys. While trying to push git repository to github it is showing this error git push -u origin master fatal: unable to connect to github.com: github.com: Servname not supported for

Re: [git-users] git push problem (Windows)

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 01:37:31 -0800 (PST) Thomas Ferris Nicolaisen tfn...@gmail.com wrote: Git daemon only serves read operations. You can't push to it, only fetch or pull. That is incorrect: the --enable=receive-pack command-line options precisely enables the service which allows *anonymous*

Re: [git-users] git push problem (Windows)

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 00:04:29 -0800 (PST) Sergey Ovchinnikov sergey...@gmail.com wrote: Hello, I had a problem. Hang when trying to do 'git push'. [...] git init --bare C:/Repo/egg.git git daemon --verbose --enable=receive-pack --base-path=C:/Repo --export-all C:/Repo/egg.git --detach --syslog

Re: [git-users] git make in the project directory

2012-11-14 Thread Konstantin Khomoutov
On Wed, 14 Nov 2012 07:10:20 -0800 (PST) John McKown john.archie.mck...@gmail.com wrote: This just occurred to me. I am running on Linux. I use make to do my compiles. Which I do in the working directory. I don't want the results of the compiles to be tracked in git. What I have done in the

Re: [git-users] Using GIT with multiple similar websites

2012-11-13 Thread Konstantin Khomoutov
On Tue, 13 Nov 2012 07:21:51 -0800 (PST) Ugo ugo.pa...@gmail.com wrote: That's one of the ideas I came up in the first place, but sadly not possible. The code has to change a little bit for each website, i.e : a payment processor for example, a different module, etc... It's not 100%

Re: [git-users] How to revert --amend

2012-11-09 Thread Konstantin Khomoutov
On Thu, 8 Nov 2012 12:29:16 -0800 (PST) kramer.newsreader kramer.newsrea...@gmail.com wrote: Hi, I made a commit and pushed it to a remote repo (gerrit). It turns out that my commit needs to be reverted and different changes need to be commited. According to our process, all changes for a

Re: [git-users] Re: Setting up multiple remotes

2012-11-09 Thread Konstantin Khomoutov
On Thu, 8 Nov 2012 13:48:24 -0800 (PST) Daniel Dotsenko dvdotse...@gmail.com wrote: Each remote entry has a name. default remote entry usually gets origin name. All others you can name yourself. Just to make it clear, there's no problems with renaming origin to something else (by means of

Re: [git-users] where is the .git file?

2012-11-08 Thread Konstantin Khomoutov
On Thu, 8 Nov 2012 02:04:06 -0800 (PST) John Smith csos...@gmail.com wrote: Some documents write about the .git file, for example git clone \\[repository server name]\[share name]\example.git However I have no .git file in my bare repo. Non-bare (that is, regular) repositories usually[*]

Re: [git-users] git server on linux

2012-11-08 Thread Konstantin Khomoutov
On Thu, 8 Nov 2012 09:15:09 -0800 (PST) John Smith csos...@gmail.com wrote: Do we need git binaries on the linux server? We have windows clients with Git setup and a linux server with ssh access. Do we need some Git binaries on the linux server? Yes. Please do a minimal research before

Re: [git-users] Could not read from remote repository

2012-11-07 Thread Konstantin Khomoutov
On Tue, Nov 06, 2012 at 06:04:34PM -0800, brian_P wrote: I am new to git, and can't get past the error fatal: Could not read from remote repository... Server: Mac OS X 10.6.8 Remote Access (SSH) is enabled. My public key has been added to authorized_keys for the git user. I can ssh into

Re: [git-users] How to setup git over smart http in Ubuntu

2012-11-07 Thread Konstantin Khomoutov
On Tue, 6 Nov 2012 21:30:13 -0800 (PST) kumar t12...@gmail.com wrote: Thanks i will look into it. I am basically from windows IIS background. so would have prefered step by step instruction. Will give the links a try. I would advise you to first google any HOWTO on how to set up a virtual host

Re: [git-users] How to get the counts of the commit for each branch per week?

2012-11-07 Thread Konstantin Khomoutov
On Tue, 6 Nov 2012 20:40:38 -0800 (PST) seonguk.baek baekseon...@gmail.com wrote: Is there any way how to get the counts of the commit for each branch per week? I don't think there's a built-in way to do that (since this is for managers and Git is for developers) but I think you could script

Re: [git-users] How to setup git over smart http in Ubuntu

2012-11-07 Thread Konstantin Khomoutov
On Wed, 7 Nov 2012 02:55:20 -0800 (PST) Thomas Ferris Nicolaisen tfn...@gmail.com wrote: Thanks i will look into it. I am basically from windows IIS background. so would have prefered step by step instruction. Will give the links a try. You can also try out Gitblit, which is a Java-based

Re: [git-users] git with team development

2012-11-07 Thread Konstantin Khomoutov
On Wed, 7 Nov 2012 02:43:53 -0800 (PST) John Smith csos...@gmail.com wrote: I'm new to git. I have to setup a master repo we are working on. I did the following. Created a new repo (non-bare) on my local machine (c:\work), unzipped the project, added the files, committed. I created a bare

Re: [git-users] Which is the best protocol to use in git for fast transfer

2012-11-06 Thread Konstantin Khomoutov
On Tue, 6 Nov 2012 01:38:49 -0800 (PST) kumar t12...@gmail.com wrote: can you please suggest which best protocol to use for fast transfer. My project big and has about 20 to 30 GB of files. I think that for fetching (and hence cloning) the plain git protocol should be the best. Accessing a

Re: [git-users] How to setup git over smart http in Ubuntu

2012-11-06 Thread Konstantin Khomoutov
On Tue, 6 Nov 2012 06:05:10 -0800 (PST) kumar t12...@gmail.com wrote: can someone tell me how to setup smart http for git in Ubuntu? [1] contains extensive section titled EXAMPLES which demonstrates how to set up smart HTTP transport served by the Apache web server. 1.

Re: [git-users] [PATCH] Remove terminal symbols from non-terminal console

2012-11-05 Thread Konstantin Khomoutov
On Sun, Nov 04, 2012 at 04:57:11PM -0800, Michael Naumov wrote: As per discussion on msysgit user group: https://groups.google.com/forum/?fromgroups=#!topic/msysgit/U_a982_a3rc/discussion we found the following patch is required to get rid of weird terminal characters for other tools such

Re: [git-users] Re: git checkout-index unable to create file (permission denied) on some files

2012-11-05 Thread Konstantin Khomoutov
On Tue, Oct 30, 2012 at 12:55:52PM -0700, Philipp Kraus wrote: My gut feeling is that Git is not wrong here. Try the following: Do a sudo su webserver (become the webserver user), and do the exact commands it (or PHP) is trying to do in the exact same directories. If you don't get

Re: [git-users] Re: Restarting interrupted git operations (clone, fetch, push, update, etc)

2012-11-03 Thread Konstantin Khomoutov
On Fri, 2 Nov 2012 13:58:44 -0700 (PDT) Thomas Ferris Nicolaisen tfn...@gmail.com wrote: Still, for some particularly long running operations it would be good to know if there is a way to resume something in process rather than simply discovering the anomaly, wiping the anomaly completely

Re: [git-users] git checkout-index unable to create file (permission denied) on some files

2012-10-30 Thread Konstantin Khomoutov
On Mon, 29 Oct 2012 18:22:47 -0700 (PDT) Philipp Kraus philipp.kr...@flashpixx.de wrote: I'm running a PHP script which pulls checkouts a Git repo. The script clones first the repo and on each next call it should get all new changes (git clone and than git pull). Sometime I get the message:

Re: [git-users] Why do I have to be a source control engineer just to be a software developer?

2012-10-29 Thread Konstantin Khomoutov
On Mon, Oct 29, 2012 at 03:31:13PM -0700, kramer.newsreader wrote: I am a fairly experienced developer and I have never had issues working with source control tools before git. [...] Why do I have to be a source control engineer just to be a software developer? Every time I see a post like

Re: [git-users] Fetch changes from parent branch

2012-10-25 Thread Konstantin Khomoutov
On Thu, 25 Oct 2012 09:47:58 -0700 (PDT) Kersten Broich kersten.bro...@googlemail.com wrote: I have a question regarding fetching changes from a parent branch. Imagine the following situation: I have a branch called develop - I create a new branch like this: git checkout -b newbranch

Re: [git-users] alternatives to git instaweb?, want to show uncommited changes

2012-10-25 Thread Konstantin Khomoutov
On Wed, 24 Oct 2012 18:14:53 -0300 Joe Cabezas joe.cabe...@gmail.com wrote: i want to show uncommited changes using git instaweb, but instaweb only shows commited changes... i just want to show the git diff output to someone easy..., there is any alternatives to git instaweb?, thank you

Re: [git-users] Unable to pull from remote branch

2012-10-18 Thread Konstantin Khomoutov
On Wed, Oct 17, 2012 at 12:18:10PM -0700, kramer.newsreader wrote: I did a git log and found this merge: commit 5f052c9b72f5f6306ee3702c66b6de701e36b06f Merge: 8100265 f645170 Author: ... Date: Wed Oct 17 12:50:38 2012 -0400 Merge remote-tracking branch 'gerrit/master' into

Re: [git-users] Re: Unable to install Git after building _everything_

2012-10-18 Thread Konstantin Khomoutov
On Thu, Oct 18, 2012 at 02:58:56PM -0700, Yves S. Garret wrote: Yes, but vetoed the idea. For one I'm not a fan of Windows + Git integration. Second of all, I prefer to work from the command line. Sorry for probably being harsh, but this sounds like a undereducated religious bullshit. Two

Re: [git-users] Question about revert.

2012-10-17 Thread Konstantin Khomoutov
On Tue, Oct 16, 2012 at 11:08:47PM -0700, seonguk.baek wrote: branch : dev01 1 - 2 - 3(HEAD) branch : dev02 1 - A - B (HEAD) git merge dev02 into dev01 branch : dev01 1 - A - 2 - B - 3 - Merge Commit(HEAD) That's incorrect: after merging, dev01 looks like this: - 2 - 3 - /

Re: [git-users] Unable to install Git after building _everything_

2012-10-17 Thread Konstantin Khomoutov
On Wed, 17 Oct 2012 08:57:00 -0700 (PDT) Yves S. Garret yoursurrogate...@gmail.com wrote: Any possibility of me ever finding this elusive script/command? I'd love to track it down and actually use it so that everything builds correctly. I've tried googling docbook2x-texi source with

Re: [git-users] Git for Solaris 10 download

2012-10-17 Thread Konstantin Khomoutov
On Wed, Oct 17, 2012 at 04:31:27PM -0700, Diego A. Torres wrote: I have this solaris 10 server that does not have internet connectivity and will be our remote repository. The thing is, I need to download the installation package for solaris from outside and then send the package to the

<    7   8   9   10   11   12   13   14   15   >