|
av -h |
|
Put under revision control
|
av [1] |
|
Puts the current working directory under revision control |
|
Idem, but without prompting for confirmation |
|
-
new,
-
modified,
-
removed files
|
av [ -m <commit message> ] [2] |
|
|
|
Commit with log message |
|
Automatic commit, no change check |
av --silent -m "bug fix 23"
|
Commit with no output |
|
|
av co [ <revision> | <release tag> | <filename>[:<revision>]] [ -o <output folder> ] [2] |
|
Check out revision 0 in /tmp |
|
Check out tag R1.0.0 in /tmp |
av -y co "test_report.txt"
|
Restore a file from head revision |
|
Check out/restore head revision of current source folder |
|
|
av co … [ --source=<directory name> ] |
|
Check out head revision of source 'arcv' into the current directory [3] |
av co R1.0.0 --source="arcv"
|
Check out tag R1.0.0 of source 'arcv' into the current directory [3] |
|
Check out 0 revision 2 of source 'arcv' into the current directory [3] |
av co --source="arcv" -o /tmp
|
Check out head revision of source 'arcv' into /tmp folder |
|
|
av <branch folder>[:<revision> | <release tag>] [ -o <output folder> ] [2] |
|
Create a new source folder 'fundev' in the parent directory, derived from the head revision |
|
Create a new source folder 'fundev' in the parent directory, derived from revision 2 |
|
Create a new source folder 'fundev' in the parent directory, derived from the tagged release R1.0.0 |
av branch fundev:0 -o /tmp/
|
Create a new source folder 'fundev' in the /tmp directory, derived from revision 0 |
|
|
av check [ --verbose ] [2] |
|
Returns 0 if there are no changes, 1 otherwise |
|
Listing new, removed and modified files
|
av -l [2] |
|
|
av rev [2] |
|
Outputs '2' if revision 2 is the head. |
|
Display current hash signature
|
av hash [2] |
|
Outputs the SHA256 fingerprint in hexadecimal |
|
Compute and display hash signature of a random folder
|
av hash <directory> |
|
Computes and outputs the SHA256 fingerprint of a revision 1 checkout of the 'arcv' source folder |
|
Show the revision history
|
av log [-y] [ --verbose ] [ --from=<rev> ] [ --to=<rev> ] [2] |
|
Shows all the revision logs |
|
Shows all the revision logs including changed files |
|
Presents the revisions as a menu where any revision can be diffed with either its predecessor or the head by simple keystroke |
|
Check revision history of a specific file
|
av log <file> [-y] [ --verbose ] [ --from=<rev> ] [ --to=<rev> ] [2] |
|
Shows all revision logs where the file 'file_A.txt' was changed |
|
Presents the file revisions as a menu where any revision can be diffed with either its predecessor or the head by simple keystroke |
|
|
av pub [<tag>:<revision>] [ -m <log message> ] [2] |
av pub -m "A test release 1.0.0"
|
Creates release tag R1.0.0 from head revision |
av pub HOTFIX:80 -m "A test release 1.0.0"
|
Creates release tag HOTFIX from revision 80 |
|
Show the release tags history
|
av rel [-y] [2] |
|
Shows all the release tags along with their logs |
|
Presents the releases as a menu where any release can be diffed with either the previous release or the head by simple keystroke |
|
|
av hook [ <program> ] [2] |
av hook tools/update-web.sh
|
Create a release hook pointing to update-web.sh that will be executed after release tagging is complete. |
|
List the defined hooks |
|
|
av <diff tool> [ <revision> | head | current[vs<revision | release tag>] ] [2]
where <diff tool> is any of : diff, meld, git
|
|
Between working dir and head rev |
|
Between working dir and rev 2 |
|
Between working dir and tag R1.0.0 |
|
Between head and rev 2 |
|
Between rev 2 and rev 0 |
|
Between rev 1 and rev 0 |
|
Between rev 3 and tag R1.0.0 |
|
Take out of revision control
|
av destroy [2] |
|
Deletes all related files from the repositiory |
|
|
av tarball [ <revision> | head ] [2] |
|
Create tar for current working source directory in /tmp |
|
Create tar for head revision in /tmp |
|
Create tar for very first revision in user’s home |
|
|
av export [ <directory> ] [2] |
|
The source folder will be copied in the 'git' subdir below the top archive directory, which is then pushed to the configured GitHub repository. See documentation for more info. |
|
Display available sources in repository
|
av list |
Source Head Hash Owner
arcv 152 f003f2778b1cd656 michel (1000)
arcv-test 82 ffe48281b805d5a6 michel (1000)
wwwserver 127 94ff298a1852e3f0 michel (1000)
|
Provide information about the repository
|
av repo [ <information name> ] |
<information name> any of: releases latest-release-tag latest-release-rev exclude-file exclusions src-dir rev-dir rev-hashfilepath rev-hashfilename head-dir head-image-dir git-repo size
|
Shows all available information
|
|
Shows the file patterns used to exclude files from revision-control
|
|
Shows all found information which name contains the keyword 'dir'
|
|