[git-users] Re: Connecting Clones

2010-06-01 Thread ben
Ah, Thank you, thank you! This bit did the trick: https://git.wiki.kernel.org/index.php/GitFaq#Why_won.27t_I_see_changes_in_the_remote_repo_after_.22git_push.22.3F I'm the only dev, so I can make sure the remote has no changes in the working tree, but I can see now how the post-commit hook would

[git-users] Re: Connecting Clones

2010-06-01 Thread Konstantin Khomoutov
On Jun 1, 9:06 am, ben wrote: > I've created a clone (lets call it Dev) of local project (Core), and > want to create a remote repo of Dev on a server (Staging) with a > working tree (the actual files). > > How do I setup the remotes so that I can push from Dev to Staging? > > Is this the wrong w

[git-users] Re: Connecting Clones

2010-06-01 Thread ben
Thanks Marek! That got me setup. I had a few other issues that were preventing me from pushing (namely, git was not in my $PATH for sshd (the non interactive shell). I added the path to .bashrc as well as .bash_profile, and I was able to "git push". Is there a reason for not making ./public_html/

[git-users] Re: Connecting Clones

2010-05-31 Thread Marek Wywiał
On 1 Cze, 07:30, ben wrote: > I need to add that I don't have the git-daemon on the server, it's a > shared host. > > On May 31, 10:06 pm, ben wrote: > > > > > I've created a clone (lets call it Dev) of local project (Core), and > > want to create a remote repo of Dev on a server (Staging) with

[git-users] Re: Connecting Clones

2010-05-31 Thread ben
I need to add that I don't have the git-daemon on the server, it's a shared host. On May 31, 10:06 pm, ben wrote: > I've created a clone (lets call it Dev) of local project (Core), and > want to create a remote repo of Dev on a server (Staging) with a > working tree (the actual files). > > How do