Problem in synchronize bookmark to SourceForge server
I add a bookmark to my local repository through
TortoiseHg -> Repository Explorer -> Tag -> Add/Move/Remove Bookmark
Later, I perform push to ssh://yccheok@jstock.hg.sourceforge.net/hgroot/jstock/jstock
I realize 0 changset is being pushed, and bookmark is not shown in
http://js开发者_JAVA技巧tock.hg.sourceforge.net/hgweb/jstock/jstock/graph (Use getWeekOfWeekyear instead of getWeekyear.)
Later, I clone the repository to another machine, I realize there are no bookmark information being clone from sourceforge server.
I was wondering why this happen? Is it because SourceForge is using a version of mercurial server which doesn't support bookmarking?
Bookmarks aren't normally pushed and pulled, you have to specifically ask them to be.
If you want persistent, global (between all clones), "bookmarks", use tags instead. Bookmarks are intended as lightweight transient tags, ie. "this is where I'm currently working".
精彩评论