Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not issue a warning about duplicate branch names when doing a --private check-in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d7e45aae70b1e82684faf2e9d47a74ab |
User & Date: | drh 2018-08-15 21:28:33.972 |
Context
2018-08-16
| ||
01:43 | Add comments to the /register page implementation. No logic changes. ... (check-in: a4419c6c user: drh tags: trunk) | |
2018-08-15
| ||
21:28 | Do not issue a warning about duplicate branch names when doing a --private check-in. ... (check-in: d7e45aae user: drh tags: trunk) | |
20:50 | Improved title on on the /forum page. ... (check-in: dbd96b2c user: drh tags: trunk) | |
Changes
Changes to src/checkin.c.
︙ | ︙ | |||
2123 2124 2125 2126 2127 2128 2129 | if( db_get_boolean("clearsign", 0)==0 ){ noSign = 1; } useCksum = db_get_boolean("repo-cksum", 1); outputManifest = db_get_manifest_setting(); verify_all_options(); /* Do not allow the creation of a new branch using an existing open ** branch name unless the --force flag is used */ | | > > > > | 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 | if( db_get_boolean("clearsign", 0)==0 ){ noSign = 1; } useCksum = db_get_boolean("repo-cksum", 1); outputManifest = db_get_manifest_setting(); verify_all_options(); /* Do not allow the creation of a new branch using an existing open ** branch name unless the --force flag is used */ if( sCiInfo.zBranch!=0 && !forceFlag && fossil_strcmp(sCiInfo.zBranch,"private")!=0 && branch_is_open(sCiInfo.zBranch) ){ fossil_fatal("an open branch named \"%s\" already exists - use --force" " to override", sCiInfo.zBranch); } /* Escape special characters in tags and put all tags in sorted order */ if( nTag ){ int i; |
︙ | ︙ |