Reputation: 6085
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.
Upvotes: 2
Views: 3295
Reputation: 438
vim .hg/.hgrc
Then type
[ui]
username = YOUR_NAME <YOUR_MAIL>
to it. then go back to the main directory and push it.
Upvotes: 3