Re: [git-users] git svn remote add/set-url, please?

2015-03-30 Thread Konstantin Khomoutov
On Fri, 27 Mar 2015 09:00:47 -0700 (PDT) Andrew Pennebaker andrew.penneba...@gmail.com wrote: Could git-svn please include a remote add / set-url command, so that [...] Hi! Unfortunately, this list has nothing to do with adding features to Git -- only to helping users deal with problems they

Re: [git-users] How can I unregister Git VCS root?

2015-03-30 Thread Konstantin Khomoutov
On Sun, 29 Mar 2015 01:23:16 -0700 (PDT) Natalija Yakovleva natalija.yakovl...@gmail.com wrote: I would like to use java project from GitHub. I'd like to write and compile it using Idea Community Edition 14.0, on my machine, and to perform Pull/Push etc to Git. To synchronize the project with

Re: [git-users] Cannot access branches on my bare.git repo

2015-03-30 Thread Konstantin Khomoutov
On Mon, 30 Mar 2015 08:59:47 -0700 (PDT) Frank Gutierrez dearfra...@gmail.com wrote: [...] git ls-remote origin dcca23413a0e94660cd2073c7b75e09b14923dd9 refs/heads/project1 *(only one project/branch shown)* *My bare.git repo does have files under the refs subdirectory:* refs

[git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Frank Gutierrez
*UPDATE* *refs/heads files do _not_ point to objects* path: objects/78/803b535 path: objects/4c/c30382a path: objects/b9/9cd833e path: objects/4a/a4629d6 path: objects/58/8734ab5 path: objects/57/7ffcd9c ... ... I checked the paths and they are not in the objects subdirectory I'm thinking a

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Konstantin Khomoutov
On Mon, 30 Mar 2015 09:54:05 -0700 (PDT) Frank Gutierrez dearfra...@gmail.com wrote: *UPDATE* *refs/heads files do _not_ point to objects* path: objects/78/803b535 path: objects/4c/c30382a path: objects/b9/9cd833e path: objects/4a/a4629d6 path: objects/58/8734ab5 path:

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Konstantin Khomoutov
On Mon, 30 Mar 2015 11:24:16 -0700 (PDT) Frank Gutierrez dearfra...@gmail.com wrote: *Git commands run from bare.git* $ git branch -a reactive-gallery ...and what happens if you do this in a repo restored from a backup? -- You received this message because you are subscribed to the

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Konstantin Khomoutov
On Mon, 30 Mar 2015 12:12:01 -0700 (PDT) Frank Gutierrez dearfra...@gmail.com wrote: *My backup.git repo looks bad.* git br git br -a both show nothing. Then I'm afraid someone did delete all the branches in the bare repository. If `git fsck` shows OK in it, it's supposedly OK, and

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Frank Gutierrez
*My backup.git repo looks bad.* git br git br -a both show nothing. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [git-users] GitHub ingored file

2015-03-30 Thread Konstantin Khomoutov
On Mon, 30 Mar 2015 11:13:52 -0700 (PDT) Marko Zivanovic zivanovi...@gmail.com wrote: is there any way how track again file which is in ignore list currently. Sure! [...] Is this possible? I am newbee but google ing of this problem did not lead to soluition. every help is welcome Please

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Frank Gutierrez
Thank god I found a backup few days old that is working. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.com. For more

[git-users] GitHub ingored file

2015-03-30 Thread Marko Zivanovic
is there any way how track again file which is in ignore list currently. I made mistake and put file in ignore list. I can not find some command or solution how to fix my error and track file again Is this possible? I am newbee but google ing of this problem did not lead to soluition. every

Re: [git-users] Re: Cannot access branches on my bare.git repo

2015-03-30 Thread Frank Gutierrez
*Git commands run from new repo with remote added* $ GIT_TRACE=1 git ls-remote macbook 11:12:50.709200 git.c:349 trace: built-in: git 'ls-remote' 'macbook' 11:12:50.710029 run-command.c:341 trace: run_command: 'git-upload-pack '\''/Users/frankg/dev/macbook.git'\'''

[git-users] Cannot access branches on my bare.git repo

2015-03-30 Thread Frank Gutierrez
*The Problem* I'm using a bare repo to store multiple projects. Recently I cannot list the branches on my remote bare.git repo. *When things where working I could see my projects like so:* mkdir new-repo cd new-repo git init git remote add origin ~/path/to/bare.git git ls-remote origin