Re: Compiling git for Windows

2014-02-27 Thread Konstantin Khomoutov
On Wed, 26 Feb 2014 12:23:35 -0600 Robert Dailey rcdailey.li...@gmail.com wrote: Oddly I'm not able to find any instructions on how to build Git for Windows. I've done a clone of the repository here: https://github.com/msysgit/git I did attempt to try doing it myself. I installed 'make'

Re: git:// protocol over SSL/TLS

2013-12-27 Thread Konstantin Khomoutov
On Fri, 27 Dec 2013 18:59:00 +0600 Sergey Sharybin sergey@gmail.com wrote: Quick question is, is it possible to use git:// protocol over SSL/TLS/other secure transport? The Git protocol does not implement it itself but you can channel it over a TLS tunnel (via stunnel for instance).

Re: git:// protocol over SSL/TLS

2013-12-27 Thread Konstantin Khomoutov
On Fri, 27 Dec 2013 19:58:19 +0600 Sergey Sharybin sergey@gmail.com wrote: [...] Yes, but it will only be secure if you've managed to verify the server's certificate and do trust its issuer (or a CA higher up the cert's trust chain) -- people tend to confuse encrypted with secure

Re: git:// protocol over SSL/TLS

2013-12-27 Thread Konstantin Khomoutov
On Fri, 27 Dec 2013 15:12:07 +0100 Andreas Schwab sch...@linux-m68k.org wrote: So guess we just need to recommend using https:// protocol instead of git:// for our users? Given how easy it is to verify the integrity of a git repository out of band there isn't really much of added security

Re: git:// protocol over SSL/TLS

2013-12-27 Thread Konstantin Khomoutov
On Fri, 27 Dec 2013 20:25:16 +0600 Sergey Sharybin sergey@gmail.com wrote: Security in this case is about being sure everyone gets exactly the same repository as stored on the server, without any modifications to the sources cased by MITM. As for smart http, this seems pretty much

Re: git:// protocol over SSL/TLS

2013-12-27 Thread Konstantin Khomoutov
On Fri, 27 Dec 2013 20:47:54 +0600 Sergey Sharybin sergey@gmail.com wrote: [...] As discussed in an earlier thread here, a good indication of the dumb version of the protocol being in use is no display of the fetching progress on the client while doing `git clone` because this

Re: Git reports

2013-12-06 Thread Konstantin Khomoutov
On Fri, 6 Dec 2013 18:51:47 +0200 Muzaffer Tolga Ozses to...@ozses.net wrote: On another git server, I get reports like Cloning into 'tcmb'... remote: Counting objects: 704, done. remote: Compressing objects: 100% (574/574), done. remote: Total 704 (delta 369), reused 107 (delta 60)

Re: Git reports

2013-12-06 Thread Konstantin Khomoutov
On Fri, 6 Dec 2013 21:00:35 +0400 Konstantin Khomoutov flatw...@users.sourceforge.net wrote: [...] Resolving deltas: 100% (369/369), done. whereas I don't get those with my own. What could I be doing wrong? The documentation on `git push` states: --progress Progress status

Re: Git reports

2013-12-06 Thread Konstantin Khomoutov
On Fri, 6 Dec 2013 19:44:21 +0200 Muzaffer Tolga Ozses to...@ozses.net wrote: [...] Resolving deltas: 100% (369/369), done. whereas I don't get those with my own. What could I be doing wrong? [...] So it might turn out on your own server Git for some reason fails to figure out its

Re: How to pre-empt git pull merge error?

2013-11-27 Thread Konstantin Khomoutov
On Wed, 27 Nov 2013 15:17:27 + Pete Forman petef4+use...@gmail.com wrote: I am looking for a way of detecting up front whether a git pull or git merge would fail. The sort of script I want to perform is to update a server. git fetch git okay stop server backup data

Re: Command-line git Vs IDE+plugin?

2013-11-19 Thread Konstantin Khomoutov
On Mon, 18 Nov 2013 18:42:26 +0100 Philippe Vaucher philippe.vauc...@gmail.com wrote: [...] When they understand git reasonably (or if they are not lazy people and willing to learn), then show them full integrations like TortoiseGit (or probably the Netbeans plugin), which are nice when

Re: Git clone from ftp issue

2013-11-18 Thread Konstantin Khomoutov
On Sun, 17 Nov 2013 13:22:40 -0700 Zachary Rodriguez zmrodrigue...@gmail.com wrote: Hello. I am having trouble setting up a git repository on an ftp server. The repository is bare and has had several commits made before being moved to the ftp server. I am attempting to clone from my ftp

Re: Add a bugzilla website

2013-11-15 Thread Konstantin Khomoutov
On Fri, 15 Nov 2013 10:40:47 +0100 (CET) ycollette.nos...@free.fr wrote: And the conclusion is ? No bugzilla tool installed because somebody want to build a gitbased bugzilla thing ? Well, no, the real answer is that for those who actually write code and apply patches, an e-mail based workflow

Re: 64-bit support.

2013-11-14 Thread Konstantin Khomoutov
On Thu, 14 Nov 2013 16:58:31 +0400 Лежанкин Иван abys...@gmail.com wrote: Do you plan to implement the 64-bit support in git? - Right now I have a problems sometimes with a huge repo and renaming detection. If I merge more than 32768 files at once, then the renaming detection fails, because

Re: 64-bit support.

2013-11-14 Thread Konstantin Khomoutov
On Thu, 14 Nov 2013 18:55:52 +0400 Лежанкин Иван abys...@gmail.com wrote: I hit this limit in file 'diffcore-rename.c': if (rename_limit = 0 || rename_limit 32767) rename_limit = 32767; I just guess, that this limit comes from the O(N^2) complexity of the comparison algorithm.

Re: Error message: unable to open object pack directory: .git/objects/pack: Too many open files

2013-11-12 Thread Konstantin Khomoutov
On Tue, 12 Nov 2013 12:02:38 +0400 Лежанкин Иван abys...@gmail.com wrote: I get this error message every time I want to do a `git push`. git version: 1.8.4.2 Is it a known issue? Do you need additional info to investigate it? What does ulimit -n tells to you when you run it before

Re: Problem setting up a shared git repository

2013-09-06 Thread Konstantin Khomoutov
On Thu, 5 Sep 2013 14:43:52 -0700 (PDT) Eyal Zinder ezin...@yahoo.com wrote: [...] The problem I faced later on was in parallel development, when changes were made to a file in one repository, and at the same time other changes made to the same file in another repository..  I couldh't push

Re: coming from git, understanding mercurial branching

2013-09-06 Thread Konstantin Khomoutov
On Thu, 5 Sep 2013 21:27:14 -0500 Tim Chase g...@tim.thechases.com wrote: [...] Do any git users here have good understanding Mercurial branches for the git user resources they've found helpful when working with Mercurial? Preferably a for dummies resource with illustrations comparison

Re: Why can't I push from a shallow clone?

2013-07-26 Thread Konstantin Khomoutov
On Thu, 25 Jul 2013 19:33:16 -0700 Gulshan Singh gsingh2...@gmail.com wrote: I've been trying to figure out why I can't push from a shallow clone (using --depth) to a repository. I've made simple examples where it works, but I've read that in doesn't work in every case. However, I can't come

Re: Git on intranet

2013-07-26 Thread Konstantin Khomoutov
On Fri, 26 Jul 2013 16:21:28 +0200 Muhammad Bashir Al-Noimi mbno...@gmail.com wrote: I want to use Git over the local network in our company because the internet connection isn't stable so I wonder how can I use git with pull request (similar to Github)? Depends on what feature set you

Re: git and cyrillic branches

2013-07-25 Thread Konstantin Khomoutov
On Thu, 25 Jul 2013 15:19:48 +0300 иванов иван xowi...@yandex.ru wrote: hello! there is problem vith git and cyrillic (utf-8) names of branches. branch creates perfectly, but when i clone this remote branch to local host, there are 2 bugs: 1) git branch doesnt show checked branch with

Re: git and cyrillic branches

2013-07-25 Thread Konstantin Khomoutov
On Thu, 25 Jul 2013 17:06:41 +0400 ксовиран xowi...@yandex.ru wrote:  hello! there is problem vith git and cyrillic (utf-8) names of  branches. branch creates perfectly, but when i clone this remote  branch to local host, there are 2 bugs:  1) git branch doesnt show checked branch with

Re: git and cyrillic branches

2013-07-25 Thread Konstantin Khomoutov
On Thu, 25 Jul 2013 18:51:57 +0400 ксовиран xowi...@yandex.ru wrote: [...] I'm afraid, this might be not that simple: Git received certain tweaks to work around certain problems Mac OS X has (as I understand it) with handling UTF-8 on various filesystems it supports; in particular, see

Re: git and cyrillic branches

2013-07-25 Thread Konstantin Khomoutov
On Thu, 25 Jul 2013 18:51:57 +0400 ксовиран xowi...@yandex.ru wrote: [...] I'm afraid, this might be not that simple: Git received certain tweaks to work around certain problems Mac OS X has (as I understand it) with handling UTF-8 on various filesystems it supports; in particular, see

Re: Fwd: Online book has incorrect link

2013-07-24 Thread Konstantin Khomoutov
On Wed, 24 Jul 2013 16:46:46 +0400 Konstantin Konovalov kostya.konova...@gmail.com wrote: During reading the online book (http://git-scm.com/book/ru - russian translation) I found some bugs. [...] Please report them at https://github.com/github/gitscm-next/issues -- To unsubscribe from this

Re: Error

2013-07-10 Thread Konstantin Khomoutov
On Tue, 9 Jul 2013 20:30:37 -0500 Chanakya Vattikuti gk2cverag...@gmail.com wrote: I get this error message when trying to create a shared ssh key in Mac osx Lion This problem has nothing to do with Git as it purely is about transferring a public part of your SSH key to another host. So try

Re: GIt error

2013-06-17 Thread Konstantin Khomoutov
On Mon, 17 Jun 2013 13:28:30 + justin.sathyanat...@accenture.com wrote: For Below issue , O/S is Windows7. [...] 1.Iam getting error attached when cloning of repository is done: What error? 2.Also, when file is tried to be added,it gives error below: $ git add * fatal: unable to stat

Re: GIt error

2013-06-17 Thread Konstantin Khomoutov
On Mon, 17 Jun 2013 17:47:07 +0400 Konstantin Khomoutov kostix+...@007spb.ru wrote: For Below issue , O/S is Windows7. 1.Iam getting error attached when cloning of repository is done: What error? Okay, the Microsoft Word document with two screenshots has been scrubbed by the list software

Re: git-svn too slow, contacts upstream svn repo

2013-05-28 Thread Konstantin Khomoutov
On Tue, 28 May 2013 15:42:57 +0800 (SGT) Quark unixuser2000-f...@yahoo.com wrote: I have been using git-svn in an corporate environment where svn repo has lot of branches, (lot means 100). To avoid cloning all branches my config looks as below [...] is this not right forum? As a matter

Important articles on git-scm.com no more accessible

2013-05-01 Thread Konstantin Khomoutov
I maintain a local wiki at my $dayjob which contains a page dedicated to Git which, among other things, liks to various useful bits of information on the internets. Recently I discovered that a number of useful articles which sort of accompanied the Pro Git book are now inaccessible (404),

Re: Important articles on git-scm.com no more accessible

2013-05-01 Thread Konstantin Khomoutov
On Wed, 1 May 2013 14:38:02 -0400 Jeff King p...@peff.net wrote: [...] Recently I discovered that a number of useful articles which sort of accompanied the Pro Git book are now inaccessible (404), namely: Smart HTTP Transport [1], Reset Demystified [2], Note to Self [3] and Git Loves the

Re: Pushing/fetching from/into a shallow-cloned repository

2013-04-19 Thread Konstantin Khomoutov
On Thu, 18 Apr 2013 15:46:12 -0700 Junio C Hamano gits...@pobox.com wrote: Philip Oakley philipoak...@iee.org writes: So I observe pushing/fetching works OK at least for a simple case like this one. Hence I'd like to ask: if the manual page is wrong or I'm observing some corner case?

Pushing/fetching from/into a shallow-cloned repository

2013-04-18 Thread Konstantin Khomoutov
The git-clone manual page, both [1] and my local copy coming with Git for Windows 1.8.1, say about the --depth command-line option: --depth depth Create a shallow clone with a history truncated to the specified number of revisions. A shallow repository has a number of

Re: Pushing/fetching from/into a shallow-cloned repository

2013-04-18 Thread Konstantin Khomoutov
On Thu, 18 Apr 2013 13:52:33 +0400 Konstantin Khomoutov kostix+...@007spb.ru wrote: The git-clone manual page, both [1] and my local copy coming with Git for Windows 1.8.1, say about the --depth command-line option: [...] Oops, by [1] I wanted to refer to this version: https://www.kernel.org

Re: git log - crash and core dump

2013-04-17 Thread Konstantin Khomoutov
On Wed, 17 Apr 2013 13:14:48 +0400 Ivan Lyapunov dron...@gmail.com wrote: netbeans use some integrated git wrapper and I don't know about JGit source base or not. In Eclipse we use Egit. Also all broken commits limited to november 2012, but we still continue to use the same development

Re: Git crash in Ubuntu 12.04

2013-04-12 Thread Konstantin Khomoutov
On Fri, 12 Apr 2013 18:58:24 +0530 Sivaram Kannan siva.de...@gmail.com wrote: ^^^ Try to issue the $ ulimit -c unlimited Have set the git user's crash limit to 1GB in /etc/security/limits.conf and still getting the same error when issuing gdb to the crash file. Yep, suppsedly in

Re: git send-pack: protocol error: bad band #50

2013-04-11 Thread Konstantin Khomoutov
On Thu, 11 Apr 2013 07:49:44 +0100 João Joyce joao.jo...@netcabo.pt wrote: [...] but I am getting the following error: git send-pack: protocol error: bad band #50 fatal: The remote end hung up unexpectedly It seems that something is failing on the remote side but I can't find

Re: Git crash in Ubuntu 12.04

2013-04-11 Thread Konstantin Khomoutov
On Thu, 11 Apr 2013 15:50:31 +0530 Sivaram Kannan siva.de...@gmail.com wrote: [...] Output of coredump gdb: gitadmin@gitserver:/var/crash/dump$ gdb git CoreDump GNU gdb (Ubuntu/Linaro 7.4-2012.04-0ubuntu2.1) 7.4-2012.04 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU

Re: git status takes 30 seconds on Windows 7. Why?

2013-03-27 Thread Konstantin Khomoutov
On Wed, 27 Mar 2013 11:39:31 -0500 Jim Kinsman jakins...@gmail.com wrote: git status takes 30 seconds on Windows 7. Here are some stats: [...] What can I do??? This is so slow it is unbearable. By the way i've done git gc several times and nothing changed. You could try some voodoo [1] or

Re: Git build fails on `make`, undefined references in libcrypto.a.

2013-03-18 Thread Konstantin Khomoutov
On Sun, Mar 17, 2013 at 10:03:37PM -0600, zero modulo wrote: $ LDFLAGS=-L/sandbox/builds/lib CPPFLAGS=-I/sandbox/builds/include ./configure --prefix=$PREFIX $ make […] /sandbox/builds/lib/libcrypto.a(dso_dlfcn.o): In function `dlfcn_globallookup': dso_dlfcn.c:(.text+0x1b): undefined

Re: building git ; need suggestion

2013-03-15 Thread Konstantin Khomoutov
On Fri, 15 Mar 2013 13:44:15 +0100 Fredrik Gustafsson iv...@iveqy.com wrote: [...] The webgui that's most populair is cgit and git-web. They don't do ACL afaik. gitweb passes around branch names using a specific parameter in the GET queries it operates on, like

Re: SSH version on Git 1.8.1.2 for Windows is outdated.

2013-03-15 Thread Konstantin Khomoutov
On Fri, 15 Mar 2013 11:05:11 +0100 Kristof Mattei kris...@kristofmattei.be wrote: We're having issues with the version of SSH included in git version 1.8.1.msysgit.1 (Git-1.8.1.2-preview20130201.exe) The included version of SSH is from 2007: C:\Program Files (x86)\Git\bin - Oldssh -V

Re: Updating not actual branch

2013-03-12 Thread Konstantin Khomoutov
On Tue, 12 Mar 2013 14:22:00 +0100 Jan Pešta jan.pe...@certicon.cz wrote: I have a question if there is a posibility tu update a branch which is not actual working copy. I have following situation: A - B - C - I - J master \ - D - E - F

Re: git-scm.com/book/ru -- incorrect next link containing a question mark

2013-03-07 Thread Konstantin Khomoutov
On Thu, 7 Mar 2013 00:01:31 -0800 (PST) Aleksey Rozhkov ekker...@gmail.com wrote: The page http://git-scm.com/book/ru/ Введение-Первоначальная-настройка-Git contains incorrect link next Now this link to the page http://git-scm.com/book/ru/Введение-Как-получить-помощь? , but this page does

Re: running git from non-standard location on Mac

2013-02-21 Thread Konstantin Khomoutov
On Thu, 21 Feb 2013 09:48:36 + James French james.fre...@naturalmotion.com wrote: I wonder if someone could help me. I installed git on a Mac and then I copied the install somewhere else (which I do want to do, trust me).  I'm now having trouble with git svn. I'm getting Can't locate

Re: git svn init throws Not a git repository (or any of the parent directories): .git

2013-02-13 Thread Konstantin Khomoutov
On Wed, 13 Feb 2013 14:01:36 +0100 amccl...@gmail.com amccl...@gmail.com wrote: I have problem with git svn init: When I execute git svn init svn+ssh://usern...@example.com/path/repo I see: fatal: Not a git repository (or any of the parent directories): .git Already at toplevel, but .git

Re: Pushing a git repository to a new server

2013-02-10 Thread Konstantin Khomoutov
On Sun, Feb 10, 2013 at 04:00:56PM -0500, Ethan Reesor wrote: I'm looking to make a command to push a git repo to a new server. The way I just did it is as follows: localhost git clone --bare /path/to/MyRepo /path/to/tmpdir/MyRepo.git localhost tar xz /path/to/tmpdir/MyRepo.git | ssh

Re: Feature request: Allow extracting revisions into directories

2013-02-03 Thread Konstantin Khomoutov
On Sun, Feb 03, 2013 at 03:18:05PM +0100, Robert Clausecker wrote: git currently has the archive command that allows to save an arbitrary revision into a tar or zip file. Sometimes it is useful to not save this revision into an archive but to directly put all files into an arbitrary

Re: git-core vs git package on ubuntu

2013-01-25 Thread Konstantin Khomoutov
On Fri, 25 Jan 2013 14:50:24 +0100 Mario Michael Krell supermari...@googlemail.com wrote: In your documentation you say, that git should be installed on Unix using apt-get install git-core Note that Ubuntu is not Unix. Unfortunately it tells the user, that this package is obsolete and

Re: Question re. git remote repository

2013-01-16 Thread Konstantin Khomoutov
On Wed, 16 Jan 2013 17:49:09 + Lang, David david.l...@uhn.ca wrote: We're just in the process of investigating a versioning tool and are very interesting in git. We have one question we're hoping someone can answer. In regards to the repositories, I think I understand correctly that each

Re: Question re. git remote repository

2013-01-16 Thread Konstantin Khomoutov
On Wed, 16 Jan 2013 10:21:56 -0800 Jeff King p...@peff.net wrote: Thanks for elaborating on the origin -- I intended to write up on its special status but got distracted and sent my message missing that bit ;-) [...] Ideally we'd prefer to simply create our remote repository on a drive of

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: Understanding When to Use Branches

2013-01-08 Thread Konstantin Khomoutov
On Tue, 08 Jan 2013 08:46:21 -0500 gw1500 wtriker@gmail.com wrote: As a git noobie I am beginning get get my head around git's version control philosophy. I am now trying to understand the purposes of branches or rather when to use them. In my case I have a Java application under version

Re: Can I zip a git repo without losing anything?

2012-11-26 Thread Konstantin Khomoutov
On Mon, 26 Nov 2012 04:55:10 + Carl Smith carl.in...@gmail.com wrote: After suggesting using zip files to move our projects around, I was told that you can not zip a git repo without loosing all the history. This didn't make sense to me, but two people told me the same thing, so I wasn't

Re: three questions: proper forum? reverting changes to the working directory

2012-11-08 Thread Konstantin Khomoutov
On Thu, 8 Nov 2012 08:26:22 -0600 McKown, John john.mck...@healthmarkets.com wrote: 1) is this the proper forum for asking general git usage questions, such as how to? If not, what is? This list is okay for the general usage questions. But since it's the place where the development questions

Re: how the commit ID come from in GIT?

2012-11-05 Thread Konstantin Khomoutov
On Mon, Nov 05, 2012 at 12:04:06PM -0800, hong zhang wrote: Could anyone explain how the git commit ID will include all the files that devloper makes changes on? How git commit ID works? To expand on the answer provided by Magnus, I would also suggest reading the classic Git from the bottom

Re: [git-users] git compilation problem

2012-11-05 Thread Konstantin Khomoutov
On Mon, Nov 05, 2012 at 09:21:13AM -0800, Mathieu Dutour wrote: First, note that this list is a support channel for Git newbies, and your question appears to be more about Git source code itself so I'd say it better fits the main Git list which is git at vger.kernel.org. I Cc'ed this my response

Re: Set core.ignorecase globally

2012-11-02 Thread Konstantin Khomoutov
On Fri, 2 Nov 2012 18:39:26 +0400 Kirill Likhodedov kirill.likhode...@jetbrains.com wrote: Currently, core.ignorecase is set to true on case insensitive system like Windows or Mac on `git init` and `git clone`, and this setting is local to the created/cloned repository. [...] I suggest to set

Re: Set core.ignorecase globally

2012-11-02 Thread Konstantin Khomoutov
On Fri, 2 Nov 2012 19:03:37 +0400 Konstantin Khomoutov flatw...@users.sourceforge.net wrote: Currently, core.ignorecase is set to true on case insensitive system like Windows or Mac on `git init` and `git clone`, and this setting is local to the created/cloned repository. [...] I suggest

Re: [git-users] Git clone fails with bad pack header, how to get remote log

2012-10-29 Thread Konstantin Khomoutov
On Mon, 29 Oct 2012 09:52:54 -0700 (PDT) Kevin Molcard kev2...@gmail.com wrote: I have a problem with my build system. I have a remote server with a relatively large repository (around 12 GB, each branch having a size of 3 GB). I have also 2 build servers (Mac, Windows) that are cloning

Re: Bug report

2012-10-05 Thread Konstantin Khomoutov
On Fri, 5 Oct 2012 14:13:49 +0400 Муковников Михаил m.mukovni...@gmail.com wrote: There's a problem using git with files having cyrillic 'й' in their name, git just can't track them. uname: Darwin 12.2.0 Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012;

Fw: [git-users] How do I git-push to an FTP server?

2012-10-05 Thread Konstantin Khomoutov
fusio...@gmail.com Subject: Re: [git-users] How do I git-push to an FTP server? Den fredagen den 5:e oktober 2012 kl. 11:38:43 UTC+2 skrev Konstantin Khomoutov: On Fri, 5 Oct 2012 01:24:21 -0700 (PDT) August Karlstrom fusio...@gmail.com javascript: wrote: I get the following error when I run

Re: Fw: [git-users] How do I git-push to an FTP server?

2012-10-05 Thread Konstantin Khomoutov
On Fri, 5 Oct 2012 15:46:33 +0200 Philippe Vaucher philippe.vauc...@gmail.com wrote: On the git-users mailing list we're trying someone to help with running `git push` over FTP. That person is runnig Git 1.7.9.5 on Ubuntu 12.04. I don't think vanilla git supports pushing over ftp.

Re: Clone to an SSH destination

2012-09-03 Thread Konstantin Khomoutov
On Mon, 3 Sep 2012 11:21:43 +0100 (BST) Mark Hills mark.hi...@framestore.com wrote: How do I clone a repo _to_ a new repo over SSH? I tried: cd xx git clone --bare . gitserver:/scm/xx.git git clone --bare . ssh://gitserver/scm/xx.git This does not have the expected result, and

Re: Clone to an SSH destination

2012-09-03 Thread Konstantin Khomoutov
On Mon, 3 Sep 2012 14:07:48 +0100 (BST) Mark Hills mark.hi...@framestore.com wrote: [...] But I'm actually more curious about why you need this in the first place, there's a bunch of devs where I work as well, but they never have the need to create new repos on some NFS drive in this

Re: exporting a .git file ?

2012-08-27 Thread Konstantin Khomoutov
On Mon, 27 Aug 2012 15:32:40 +0100 Aaron Gray aaronngray.li...@gmail.com wrote: Is there anyway to get my git repository as a single file ? Depends on what you really need. If you need to export the repository *history* of one or more references (branches or tags), use `git bundle` to create a

Re: How to pull from windows box

2012-08-16 Thread Konstantin Khomoutov
On Thu, 16 Aug 2012 07:11:28 -0600 J.V. jvsr...@gmail.com wrote: We have a central/shared bare repo setup on a Linux box by our scc/build team. Each developer pulls/pushes to this repo. I have two windows boxes where I have cloned the repo. I want to commit and then on my second

Re: GIT smart http vs GIT over ssh

2012-07-30 Thread Konstantin Khomoutov
On Tue, Jul 31, 2012 at 08:36:07AM +0530, vishwajeet singh wrote: Just wanted to know the difference between smart http and ssh and in what scenarios we need them I am setting up a git server, can I just do with smart http support or I need to enable the ssh support to use git effectively.

Re: pushing branches

2012-07-20 Thread Konstantin Khomoutov
On Fri, 20 Jul 2012 12:26:09 -0300 Thiago Farina tfrans...@gmail.com wrote: How can I push a working branch to github inside it? E.g: # On master: $ git checkout -b feature-work # On feature-work # vi, hack, commit, ready to push $ git push origin master # here I expected it would

Re: Feature request: fetch --prune by default

2012-07-19 Thread Konstantin Khomoutov
On Thu, 19 Jul 2012 18:21:21 +0200 Alexey Muranov alexey.mura...@gmail.com wrote: [...] I do not still understand very well some aspects of Git, like the exact purpose of remote tracking branches (are they for pull or for push?), so i may be wrong. This is wery well explained in the Pro Git

Re: Git and Quilt

2012-07-09 Thread Konstantin Khomoutov
On Mon, 09 Jul 2012 13:57:09 +0200 Jimmy Thrasibule thrasibule.ji...@gmail.com wrote: I have a core project on which I maintain a set of patches using Quilt. This allows me to make changes to the project without touching the files so I can upgrade to new versions easily. I keep my patches

Re: Problems pushing???

2012-07-08 Thread Konstantin Khomoutov
On Sun, Jul 08, 2012 at 02:12:46AM -0700, pbGit wrote: I have installed git locally to my machine. It is running mac os lion. This is intended to be the remote machine too. I have followed, what I think is the correct way to do this, using

Re: Problems pushing???

2012-07-08 Thread Konstantin Khomoutov
On Sun, Jul 08, 2012 at 01:52:03PM +0200, Holger Hellmuth wrote: http://www.petermac.com/setup-git-local-and-remote-repositories/ this . All The recipe at this address seems to have a --bare parameter missing at the git init in step 7 The OP stated that «This is intended to be the remote

<    1   2