[git-users] Git Authentication and Authorization not working

2013-07-02 Thread Nishant Kansal
Hello, I am configuring Git on windows using http access. I am able to configure httpd.conf to the extent, where anyone in the network can push/pull changes from the server repository. However, the authentication block within httpd.conf seem to be not getting invoked. The authuserfile is

[git-users] How to deal with concurrent changes in a project

2013-07-02 Thread jaykav47
Hi, I'm having difficulty understanding how I should use git when I have multiple independent changes in a project. I have a local git repository for various windows linux machines and I work on different parts of the project on different machines. The situation I have is that I am part way

Re: [git-users] How to deal with concurrent changes in a project

2013-07-02 Thread Gergely Polonkai
Hello, do I get it right, and you have only two repos, one on the linux and one on the windows machine, and you don't use an intermittent repository, like a git server, Gitorious or Github? If so, you MUST commit or stash your changes in origin, before pushing your changes there. Or, you may set

Re: [git-users] How to deal with concurrent changes in a project

2013-07-02 Thread John McKown
Caution: Not an expert by any means. What I would do is this. First, I would do a git stash. quote Use git stash when you want to record the current state of the working directory and the index, but want to go back to a clean working directory. The command saves your local modifications away and

Re: [git-users] How to deal with concurrent changes in a project

2013-07-02 Thread John McKown
Dang it, don't do the git stash at all, it cleans up the working directory. Just do the git status and git reset parts. When you've gotten the index to contain only the files you want to commit (the rest will be untracked), then do the git commit and git push. Then just do a git add -A . On Tue,

Re: [git-users] How to deal with concurrent changes in a project

2013-07-02 Thread Gergely Polonkai
@John McKown, `git stash` can be rewerted with `git stash pop`, so it cleans up the working directory only temporarily. So it does just what it says it will do: put your changes in a stash. On 2 July 2013 14:55, John McKown john.archie.mck...@gmail.com wrote: Dang it, don't do the git stash at

[git-users] Reg: Getting new branch commits in git

2013-07-02 Thread Muthu
Hi, I'm a new one for git. I need to execute some code standards in my server (git repository). But i'm unable to execute the codecheck process for the new branch commits pushed by client. Its working for the existing branch. I'm using update hook for executing this codecheck process.

Re: [git-users] Reg: Getting new branch commits in git

2013-07-02 Thread Konstantin Khomoutov
On Tue, 2 Jul 2013 07:51:18 -0700 (PDT) Muthu n.petchimu...@gmail.com wrote: Hi, I'm a new one for git. I need to execute some code standards in my server (git repository). But i'm unable to execute the codecheck process for the new branch commits pushed by client. Its working for the

Re: [git-users] Do I have to download all files?

2013-07-02 Thread Dale R. Worley
From: HWSWMAN ed.pat...@gmail.com If I create a git repo for multiple projects, for example ALL projects that my team works on, when they clone and pull, do they have to download all the files? Can they sort of selectively download the files they may want to read or work on? I

Re: [git-users] Do I have to download all files?

2013-07-02 Thread Ed Pataky
interesting though thank you On Tuesday, July 2, 2013, Dale R. Worley wrote: From: HWSWMAN ed.pat...@gmail.com javascript:; If I create a git repo for multiple projects, for example ALL projects that my team works on, when they clone and pull, do they have to download all the files?