Bitbucket - send new files to an empty repository

1

I created a new Mercurial repository on the bitbucket called MEUNOVOREP .

Now I have a directory in my c:\novoprojeto which has a series of files that I want to send to this repository.

My question: How do I associate this my c:\novoprojeto directory with my% Repository MEUNOVOREP , so that later I select the files I'm going to send and files that I'm going to ignore?

    
asked by anonymous 01.11.2017 / 13:05

1 answer

0

To initialize a repository:

hg init c:\novoprojeto

To send the repository to Bitbucket:

cd novoprojeto
hg push https://bitbucket.org/marquinhos/meunovorep
    
12.11.2017 / 00:46