1

I can not understand, why 'fatal' is here? And really all commits are pushed.

oleg@shoom-gnome:(master)~/workspace/S4$ git push
Counting objects: 5, done.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 280 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
To ssh://account@host/var/git/S4
   79ea0f2..6e8a193  master -> master
fatal: Not a git repository: '.'

2 Answers 2

3

Well, if /var/git/S4 on the remote is a git repository, then, perhaps, it's something happening in the hook script?

And, duplicating my comment to kmarsh's answer I've just upvoted: I'd recommend account@host:/var/git/S4 instead of url-like form for ssh.

Sign up to request clarification or add additional context in comments.

Comments

1

Replace:

ssh://account@host/var/git/S4

with

ssh://account@host//var/git/S4

To get the full path instead of one relative to account's home dir.

1 Comment

uh... now I realized it looks weird. I'd suggest account@host:/var/git/S4 then instead of url-like form. The problem is, should git have gone this far if it was a wrong directory?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.