[git-users] bare repo file permission issues when sharing with multiple users

2015-08-05 Thread dexter ietf
two users belonging to the same group are unable to commit to a shared repository. i did configure the core.sharedrepository to group still after the first user has committed the second user is unable to commit. the following is how the objects folder is looking like, with the following state it

Re: [git-users] bare repo file permission issues when sharing with multiple users

2015-08-05 Thread dexter ietf
On Wednesday, August 5, 2015 at 8:28:42 PM UTC+5:30, Sean Johnson wrote: Git uses a distributed model. The correct approach is for the second user to clone the repository. they did clone a separate repo, the problem is they are unable to push back to the repo they cloned from, because of the

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-31 Thread dexter ietf
On Tuesday, July 28, 2015 at 12:01:36 AM UTC+5:30, Konstantin Khomoutov wrote: On Sun, 26 Jul 2015 22:52:21 -0700 (PDT) dexter ietf dexte...@gmail.com javascript: wrote: git pull is actually the same as if you write git fetch and then Hi Konstantin, Thanks for the detailed reply

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-26 Thread dexter ietf
On Friday, July 24, 2015 at 5:08:00 PM UTC+5:30, Gergely Polonkai wrote: git pull is actually the same as if you write git fetch and then git merge. git-fetch doesn't update anything in your working directory, it just download the changes from the remote. Think about it as if I ask you what

Re: [git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-24 Thread dexter ietf
On Thursday, July 23, 2015 at 8:12:45 PM UTC+5:30, Konstantin Khomoutov wrote: On Thu, 23 Jul 2015 06:44:41 -0700 (PDT) dexter ietf dexte...@gmail.com javascript: wrote: That's almost zero information in your problem statement. ok, the remote repo from which i cloned the bare repo has

[git-users] git fetch doesn't update latest tags on a bare repo.

2015-07-23 Thread dexter ietf
Hi, i have a bare repo, when i do a git fetch, the remote tags are not getting updated, though the 'fetch command' runs successfully. please shed some light. thanks. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from

[git-users] bare repository checkout

2015-07-23 Thread dexter ietf
Hi, bare repository only contains the meta data, but when i clone from a bare-repo full tree will be checked out. how does git manage to achieve that. i know it's a newbie question. but surprised by the fact that git can do that. so curious to know the answer asap. thanks. -dexter -- You

[git-users] pushing a private branch to a remote master branch.

2015-07-23 Thread dexter ietf
Hi, This is what i did, git main repo, call it (M): - clone (M) call it (M-merge) - clone (M) call it (C-merge) - on C-merge, add a new remote for (M-merge), call it Remote-M - on C-merge, create a branch called SC-merge and set it track Remote-M - make a commit to SC-merge and try to push

Re: [git-users] adding a remote on a private branch.

2015-07-22 Thread dexter ietf
- Clone P, call it Pb I'm just trying to understand if the above is valid configuration ? thanks a lot for your help. On Tuesday, July 21, 2015 at 8:07:13 PM UTC+5:30, Magnus Therning wrote: On Mon, Jul 20, 2015 at 11:51:10PM -0700, dexter ietf wrote: Hi, i want to add a remote

[git-users] adding a remote on a private branch.

2015-07-21 Thread dexter ietf
Hi, i want to add a remote for a private branch. i have a parent repository call it (P). and two clones of P on different machines (a) and (b), call it Pa and Pb. now in machine (a) i want to create a private branch tracking Pb, how do i go about achieving this, any help is appreciated..

[git-users] git log --graph

2014-06-26 Thread dexter ietf
how to interpret the output of git log --graph, is there any explanation or good documentation available for this. -dexter -- 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,

[git-users] diff most recent commit

2014-05-29 Thread dexter ietf
hi, how to see the diff of a file with it's most recent commit. also show to take the diff of file:lineno with its most recent commit on the line. note that the recent commit for a file and file:lineno might be different. -thanks -- You received this message because you are subscribed to the

Re: [git-users] diff most recent commit

2014-05-29 Thread dexter ietf
On Friday, May 30, 2014 10:49:29 AM UTC+5:30, charlesmanning wrote: git log -p filename git log lists all the commits, how about if just want to see most recent commit or most recent 2 commits on a file and per line basis. can we achieve the same with 'git diff', because this will help me

[git-users] git commit on a folder

2014-03-05 Thread dexter ietf
what it means to git when i try to commit on the local folder. for example git commit . is there any real use case for this ? -- 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

[git-users] effect of git checkout master on master branch

2014-02-28 Thread dexter ietf
i'm already on master branch, what's the effect of running the 'git checkout master' while on master branch ? thanks -- 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

[git-users] Re: git rebase keeps giving the conflict

2013-09-22 Thread dexter ietf
On Saturday, September 21, 2013 5:18:13 PM UTC+5:30, dexter ietf wrote: hi, i cloned a new tree, made changes to file readme.txt meantime readme.txt in the remote has changed at the same location. when i do a git pull i got merge conflicts, i resolved the conflicts and did a 'git commit

[git-users] git rebase keeps giving the conflict

2013-09-21 Thread dexter ietf
hi, i cloned a new tree, made changes to file readme.txt meantime readme.txt in the remote has changed at the same location. when i do a git pull i got merge conflicts, i resolved the conflicts and did a 'git commit' now i did git rebase, somehow i'm seeing the conflict again, now i fixed the

[git-users] git rebase after a pull

2013-09-21 Thread dexter ietf
is it required to do a git pull before doing a git push. and is it required to do a git rebase after git pull just before git push. one of my git repo mandates the above wondering if there is a valid reason for this. -dexter -- You received this message because you are subscribed to the Google

Re: [git-users] avoid git deleting tags file

2013-09-03 Thread dexter ietf
files in .gitignore, just don't use the option x, only the options f and d: git clean -fd William Seiti Mizuta @williammizuta Caelum | Ensino e Inovação www.caelum.com.br On Tue, Sep 3, 2013 at 10:33 AM, dexter ietf dexte...@gmail.comjavascript: wrote: hi, when i run git clean -xfd

[git-users] Re: git log takes lot of time

2013-09-01 Thread dexter ietf
On Monday, September 2, 2013 12:59:13 AM UTC+5:30, Thomas Ferris Nicolaisen wrote: On Friday, August 30, 2013 3:48:24 PM UTC+2, dexter ietf wrote: i'm running git version 1.7.9.5 in cygwin with no encryption and local drive. i'm using time command to measure the time and i'm not using

[git-users] Re: git log takes lot of time

2013-08-30 Thread dexter ietf
On Friday, August 30, 2013 11:21:05 AM UTC+5:30, Thomas Ferris Nicolaisen wrote: On Thursday, August 29, 2013 6:52:38 PM UTC+2, dexter ietf wrote: this is my git repo size, why does git log takes such huge time and how do i improve the time. real 0m35.603s user0m08.093s sys

[git-users] git log takes lot of time

2013-08-29 Thread dexter ietf
this is my git repo size, why does git log takes such huge time and how do i improve the time. real 0m35.603s user0m08.093s sys 0m22.900s $ du -h .git 27K .git/hooks 437K.git/info 3.0K.git/logs/refs/heads 2.0K.git/logs/refs/remotes/origin 2.0K

Re: [git-users] error during git pull

2013-08-26 Thread dexter ietf
. Best, Gergely On 26 Aug 2013 16:41, dexter ietf dexte...@gmail.com javascript: wrote: I get the following error when doing a 'git pull' i haven't touched the file 'one/tgt' nor committed anything related to it, while checking it i found that 'one/tgt' is an untracked file. why am i

Re: [git-users] Re: git tree subfolder workflow

2013-08-19 Thread dexter ietf
I do not think it's possible to only clone a part of a repo. That being said, I have not experimented with subtree nor submodule. Have you look into that yet? i've looked into submodule i don't think that's what i need. i need to look at subtree. btw, i tried cloning to local disk running git

[git-users] Re: git tree subfolder workflow

2013-08-17 Thread dexter ietf
Is the size of all directories a concern at all? yes, it is, to clone a full repo to my local disk it is taking more than an hour. original problem: the server where i clone is on nfs and git is too slow on nfs, even a simple 'git status' on a local folder is taking 2~3 mins. so somebody

Re: [git-users] git on nfs is outrageously slow

2013-08-14 Thread dexter ietf
That's exactly what I do. I have my bare repository on an NFS mounted filesystem, but my working directory on my local disk. It works well for me. hi john, can you explain me what do you mean by the above statement, what's the workflow. do you clone only part of the tree to your local disk ?

Re: [git-users] git on nfs is outrageously slow

2013-08-01 Thread dexter ietf
penalty. Otherwise, you could try to configurate nfs so that it caches access to the file. Note that afaik nfs might cause problems when you access the same file simultaneously with several users because it does not support locking a file. Johannes On 31.07.2013 13:01, dexter ietf wrote

[git-users] git name-rev --tags ouput

2013-08-01 Thread dexter ietf
what's the meaning of the following in git name-rev sha output. i know the commit went into 100.15 version, but what to make of ^2~4^2~1, any pointer to documentation ? tags/100.15^2~4^2~1 -- You received this message because you are subscribed to the Google Groups Git for human beings group.

[git-users] git on nfs is outrageously slow

2013-07-31 Thread dexter ietf
please help on fixing it, it is so slow that i started hating git (for wrong reasons) i'm sure there is a way out, please help me to make my git faster. -dexter -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this