views:

31

answers:

2

Hi friends how to commit and push projects in bitbucket using MacOSx

$ hg commit
abort: no username supplied

In windows hg clients it ask username and password in pop up windows. How does this hapen on macosx? I did supply commands to terminal but no luck.

+1  A: 

You can use the .hgrc in order to configure your local Mercurial client. Setting a username for commits is described here.

halfdan
A: 
vim .hg/.hgrc

Then type

[ui]
username = YOUR_NAME <YOUR_MAIL>

to it. then go back to the main directory and push it.

huseyinalb