forked from OmerNachshon/VersionControlSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp
More file actions
26 lines (22 loc) · 960 Bytes
/
help
File metadata and controls
26 lines (22 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
help for vcom
commands
checkin used with the filename. creates a revision of the file in the current .vcom folder
examples:
vcom checkin <filename>
checkout used with the filename. presents one of the last revisions of the file. without options it is presenting the last revision that was checked in
examples:
vcom checkout <filename>
vcom checkout -r <revision> <filename>
vcom checkout -l lock -r <revision> <filename>
vcom checkout -l lock <filename>
login used to login to the system
examples:
vcom login <username>
vcom login <username> -p <password>
diff used with the filename. shows the difference between two revisions of files. without flags it will show the difference between the last version checked and the current file
vcom diff <filename>
vcom diff -r <revision> <filename>
options
-r used to mention a revision of the file
-p used to add the password to login
-l used to lock the file to changes on checkout