Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | re-introduce "co" "checkout" command to BSD branch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: | 0072bfefd270917870f80e83b3efe9e4 |
User & Date: | bch 2010-05-17 18:24:10 |
Context
2010-05-17
| ||
18:24 | re-introduce "co" "checkout" command to BSD branch Closed-Leaf check-in: 0072bfef user: bch tags: trunk | |
14:29 | Fix typo in copyright assignment form. check-in: 4cb397a7 user: drh tags: trunk | |
Changes
Changes to src/checkout.c.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
} blob_reset(&filename); manifest_clear(&m); } /* ** COMMAND: checkout ** ** Usage: %fossil checkout VERSION ?-f|--force? ?--keep? ** ** Check out a version specified on the command-line. This command ** will abort if there are edited files in the current checkout unless ** the --force option appears on the command-line. The --keep option ** leaves files on disk unchanged, except the manifest and manifest.uuid |
> |
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
}
blob_reset(&filename);
manifest_clear(&m);
}
/*
** COMMAND: checkout
** COMMAND: co
**
** Usage: %fossil checkout VERSION ?-f|--force? ?--keep?
**
** Check out a version specified on the command-line. This command
** will abort if there are edited files in the current checkout unless
** the --force option appears on the command-line. The --keep option
** leaves files on disk unchanged, except the manifest and manifest.uuid
|