mercurial - .hg not found when performing [hg out] -


i create local repo with

local-host $ hg init ~/test/ 

and in remote host clone

remote-host $ hg clone ssh://user@local-host/test 

without issues.

when im trying check if there outgoing changes in remote repo im getting error

remote-host $ cd test remote-host $ hg --verbose out comparing ssh://user@local-host/test running ssh user@local-host 'hg -r test serve --stdio' searching changes no changes found remote: abort: no repository found in '/home/user' (.hg not found)! remote: abort: no repository found in '/home/user' (.hg not found)! 

if commit change in remote/local repository , push im getting error change gets pushed.

both hosts have same mercurial version.

any ideas ?

you need let know which repository - easiest is:

remote-host $ cd ~/test/  remote-host $ hg --verbose out 

Comments