Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Show commit information after new branch is committed to avoid confusion. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | branch-info |
| Files: | files | file ages | folders |
| SHA1: |
cbde195a118e231f94994e8df8420f4c |
| User & Date: | andybradford 2017-02-07 06:39:46.526 |
| Original Comment: | Show commit information after new branch is commit to avoid confusion. |
Context
|
2017-02-07
| ||
| 06:39 | Show commit information after new branch is committed to avoid confusion. ... (Closed-Leaf check-in: cbde195a11 user: andybradford tags: branch-info) | |
|
2017-02-06
| ||
| 22:31 | Add '--no-dir-symlinks' command line option, which prevents traversing into symlinked directories. Make the '--verily' option to 'clean' imply '--no-dir-symlinks'. ... (check-in: 8e659df696 user: mistachkin tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
/* Commit */
db_end_transaction(0);
/* Do an autosync push, if requested */
if( !isPrivate ) autosync_loop(SYNC_PUSH, db_get_int("autosync-tries",1),0);
}
#if INTERFACE
/*
** Allows bits in the mBplqFlags parameter to branch_prepare_list_query().
*/
#define BRL_CLOSED_ONLY 0x001 /* Show only closed branches */
| > | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
/* Commit */
db_end_transaction(0);
/* Do an autosync push, if requested */
if( !isPrivate ) autosync_loop(SYNC_PUSH, db_get_int("autosync-tries",1),0);
show_common_info(rootid, "uuid:", 1, 1);
}
#if INTERFACE
/*
** Allows bits in the mBplqFlags parameter to branch_prepare_list_query().
*/
#define BRL_CLOSED_ONLY 0x001 /* Show only closed branches */
|
| ︙ | ︙ |