vote up 0 vote down star

I commit all my files into bitbucket. i try check in,revert file i deleted using netbeans and everything ok. when i logined into bitbucket and select my repository (private). I unable to see my source codes inside "source" column

flag

64% accept rate
1  
You should probably ask this to the bitbucket support staff or at their google group (see bitbucket.org/help/Home). – Dav Oct 30 at 2:29
alright. will do that – cometta Oct 30 at 2:37

1 Answer

vote up 2 vote down check

Did you "push" the commit to bitbucket? A commit in mercurial will not publish changes the way it does in subversion or CVS.

You can do this on the command line:

hg commit -m "my commit message"
hg push

The push will send the changesets to the "default" location specificed in .hg/hgrc, which most likely is your bitbucket account, assuming you did your hg clone from bitbucket.

link|flag
is there any way to config auto push in netbeans? – cometta Oct 30 at 9:57
@cometta, pretty sure you can do it via a hook in your .hg/hgrc file. Something like "commit = hg push". See hgbook.red-bean.com/read/… and mercurial.selenic.com/wiki/Hook – John Paulett Oct 30 at 12:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.