如何将新项目推送到我的hg mercurial URL?

时间:2017-03-06 15:36:23

标签: mercurial

我有一个存储我们所有存储库的URL:http://xxx.xx.xx.x:xxxx

我在Visual Studios中创建了一个名为MyProject1的新项目。

我打开命令提示符并执行了cd MyProject1

我做了hg init

一切都很好。

然后我想将这个项目推送到我的存储库,我做

hg add

一切看起来都不错。

我做hg commit -m "Initial Version"

一切看起来都不错。

我做hg push http://xxx.xx.xx.x:xxxx

我得到了回复:

pushing to http://xxx.xx.xx.x:xxxx
abort: 'http://xxx.xx.xx.x:xxxx' does not appear to be an hg repository:
---%<--- (text/html; charset=cp1252)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11
DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<link rel="icon" href="/static/hgicon.png" type="image/png" />
<meta name="robots" content="index, nofollow" />
<link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
<script type="text/javascript" src="/static/mercurial.js"></script>

<title>Mercurial repositories index</title>
</head>
<body>

<div class="container">
<div class="menu">
<a href="https://mercurial-scm.org/">
<img src="/static/hglogo.png" width=75 height=90 border=0 alt="mercurial" /></a

</div>
<div class="main">
<h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>

<table class="bigtable">
    <thead>
    <tr>
        <th><a href="?sort=name">Name</a></th>
        <th><a href="?sort=description">Description</a></th>
        <th><a href="?sort=contact">Contact</a></th>
        <th><a href="?sort=lastchange">Last modified</a></th>
        <th>&nbsp;</th>

---%<---
!

世界上我做错了什么?我在这里错过了一些小事吗?

提前致谢

1 个答案:

答案 0 :(得分:1)

首先,检查http://xxx.xx.xx.x:xxxx是否有存储库。基于反应它不是。您可以随时更改文件.hg/hgrc/default,添加类似

的内容
[paths]
default = http://bitbucket.org/xxxx/xxx

哪个会将您的默认分支指向回购。