Differences From:
File
src/user.c
part of check-in
[e37451d9c2]
- Add the ability to sign manifests using GPG during a check-in.
Due to a bug in the manifest parser, older versions will not be
able to check-out signed manifests.
by
drh on
2007-08-01 21:59:38.
[view]
To:
File
src/user.c
part of check-in
[6607844a01]
- Added options to the "timeline" CLI command. Additional help comments.
by
drh on
2007-08-18 11:42:24.
[view]
@@ -108,9 +108,35 @@
/*
** COMMAND: user
**
-** Dispatcher for various user subcommands.
+** Usage: %fossil user SUBCOMMAND ... ?-R|--repository FILE?
+**
+** Run various subcommands on users of the open repository or of
+** the repository identified by the -R or --repository option.
+**
+** %fossil user capabilities USERNAME ?STRING?
+**
+** Query or set the capabilities for user USERNAME
+**
+** %fossil user default ?USERNAME?
+**
+** Query or set the default user. The default user is the
+** user for command-line interaction.
+**
+** %fossil user list
+**
+** List all users known to the repository
+**
+** %fossil user new
+**
+** Create a new user in the repository. Users can never be
+** deleted. They can be denied all access but they must continue
+** to exist in the database.
+**
+** %fossil user password USERNAME
+**
+** Change the web access password for a user.
*/
void user_cmd(void){
int n;
db_find_and_open_repository();