Mercurial push, abort: authorization failed

后端 未结 8 1972
悲哀的现实
悲哀的现实 2021-01-31 14:14

I\'m having problems with pushing to mercurial repository:

$ hg push
pushing to https://user:***@hg.domain.com/X_repo
searching for changes
abort: authorization          


        
8条回答
  •  感动是毒
    2021-01-31 15:04

    If anybody wants to make it run on local machine then adding this to server REPO/.hg/hgrc will do the work:

    [web]
    allow_push = *
    push_ssl = false
    

    as described at this site.

提交回复
热议问题