-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME
36 lines (25 loc) · 911 Bytes
/
README
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
26
27
28
29
30
31
32
33
34
35
36
"svnbr" is a Subversion utility to operate branches.
Usage: svnbr <subcommand> [<option>] [<args>]
<branch-name> : /branches/<branch-name> or trunk
<tag-name> : /tags/<tag-name>
1. list branches
> svnbr [list | branches]
2. list tags
> svnbr tags
3. switch to branch or tag after craete /branches/<branch-name> (if missing)
> svnbr sw <branch-name> [--from-tag=<tag-name>]
> svnbr sw <tag-name>
4. create /tags/<tag-name>
> svnbr tag <tag-name>
5. delete branch or tag
> svnbr (del | rm) (<branch-name> | <tag-name>)
6. move branch or tag (if force)
> svnbr mv <old-branch-name> <new-branch-name>
> svnbr mv (--force | -f) <tag-name> <branch-name>
7. view log
> svnbr log [<branch-name> | <tag-name>]
8. merge
> svnbr merge (<branch-name> | <tag-name>) -c M[,N...]
> svnbr merge (<branch-name> | <tag-name>) -r M:N
9. diff
> svnbr diff (<branch-name> | <tag-name>) <file>