>   *  no more silent renaming of master vs trunk [1]

"fossil import --rename-trunk" already allows a choice for a Fossil
branch name to receive Git's "master" branch.
A bug was missed in src/import.c:~567 if( fossil_strcmp(z,
"master")==0 ) z = "trunk";

In src/import.c this option is stored in gimport.zTrunkName, so for
the purposes it should be used there instead of the ggit.zMasterName
introduced.
It can be something to this effect:
      if( fossil_strcmp(z, "master")==0 ){
          gg.zBranch = fossil_strdup(gimport.zTrunkName);
      }else{
          gg.zBranch = fossil_strdup(z);
      }

Makes sense?

>   *  tag comments are imported and exported [2]

?? How does one enter a tag comment from the Fossil command line or
this is an import/export only feature? Fossil tags are kinda dated
"lightweight" Git tags, yet unlike Git multiple commits can have the
same tag. Does this suggest also same tags but also with different
comments?
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to