Fossil

Check-in [05c1e3b9]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:For the 'amend' command, enable updating the "manifest" files with an open check-out.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | tag-cmd-manifest-updates
Files: files | file ages | folders
SHA3-256: 05c1e3b9581840561adf7c9149dc861666ec84f33bc47a37afb8a85751d49e1e
User & Date: florian 2019-02-07 17:37:00.000
Context
2019-02-07
17:39
Backout [6e80af7e52], as this branch enables the 'reparent' command to work without an open check-out. ... (Closed-Leaf check-in: 3580fce8 user: florian tags: tag-cmd-manifest-updates)
17:37
For the 'amend' command, enable updating the "manifest" files with an open check-out. ... (check-in: 05c1e3b9 user: florian tags: tag-cmd-manifest-updates)
17:34
For the 'tag' command, omit updating the "manifest" files without an open check-out, as reported here: https://fossil-scm.org/forum/forumpost/dc06c157e5. ... (check-in: f9770068 user: florian tags: tag-cmd-manifest-updates)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/info.c.
3169
3170
3171
3172
3173
3174
3175



3176
  if( fHide && !fHasHidden ) hide_branch();
  if( fClose && !fHasClosed ) close_leaf(rid);
  if( zNewBranch && zNewBranch[0] ) change_branch(rid,zNewBranch);
  apply_newtags(&ctrl, rid, zUuid, zUserOvrd, fDryRun);
  if( fDryRun==0 ){
    show_common_info(rid, "uuid:", 1, 0);
  }



}







>
>
>

3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
  if( fHide && !fHasHidden ) hide_branch();
  if( fClose && !fHasClosed ) close_leaf(rid);
  if( zNewBranch && zNewBranch[0] ) change_branch(rid,zNewBranch);
  apply_newtags(&ctrl, rid, zUuid, zUserOvrd, fDryRun);
  if( fDryRun==0 ){
    show_common_info(rid, "uuid:", 1, 0);
  }
  if( g.localOpen ){
    manifest_to_disk(rid);
  }
}