This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
forked from breiter/vault2git
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
79 lines (57 loc) · 3.53 KB
/
README.txt
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
vault2git
Purpose
Convert history from Vault repo into Git repo
Building
1. Download Vault Client API for your version of Vault (you have to use version matching your Vault server);
other option is to copy *.dll from Vault client installation
2. Replace Vault2GitLib/libs/*.dll with your files
3. Recompile
Setting up (simple way)
0. Install Git (msysgit is the easiest way); Configure it (email, name etc)
1. Create empty folder and init Git repo in it. This is your Git repo and Vault working folder.
2. Place .gitignore into your working folder. The one from vault2git may be a good starting point.
3. Create initial commit, e.g. git commit --allow-empty --message="initial commit"
4. Create branches from initial commit
5. Change .config file to match your setup.
6. run vault2git.exe.
How it works
1. vault2git gets changesets from Vault into working folder one by one and commits each into Git. Vault bindings are stripped from
*.sln, *.csproj, *.vdproj files.
2. Commit message is taken from Vault. Info about Vault revision and paths are appended to the commit message:
[git-vault-id] VaultRepo$/VaultPath@VaultRevision/VaultTrxNumber
3. Dates of the files are not preserved.
4. Commit dates are preserved
5. Author names are preserved and company domain (from .config) is appended.
6. Empty commits are converted too
7. Git tags are generated from Vault labels. Each label is prefixed with Vault Transaction ID. Duplicates (e.g. coming from Shared
folder) are ignored. Use '--ignore-labels' argument to disable this functionality.
Incremental updates
When ran again, vault2git first checks for [git-vault-id] tag in latest git commit, parses revision number (after @)
and pulls Vault data above found number only.
Additional actions
Every 200 git commits, Git garbage collection is executed.
After processing is complete, finalization executes git update-server-info, which updates data in Git repo for
dumb server (e.g. read-only http sharing with iis)
Vault labels conversion
Vault labels support a lot more characters than git tags. For compatibility, all non alphanumeric characters for
git tags are replaced with "_". Git tag can only be created if the related git commit exists. Vault labels
comments are added as git tag comments.
Known Issues
1. "The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters"
- this relates to .Net framework and Windows limitation.
Vault does not stop you creating a deep rooted folder path but this becomes a problem when parsing over the framework.
Only way that I am aware of is to 'cloak' the offending folder.
This ofcourse affects the outcome, but at least it keeps the rest of the repo running if you keep in the mind your folder may be out of sync.
Last Updated: 2011-04-06
Author: Andrey Nikiforov
Contributor: Jevgeni Zelenkov ( github.com/jzelenkov )
Location: github.com/AndreyNikiforov/vault2git
## Brian Reiter: Changes Since Fork ###
- Update for Vault 6 Pro API
- catch UnauthorizedAccessException (race condition?) attempting to delete nonexistent file
- catch and handle exception thrown if vault directory name changed during commit history
- remove vault 4 DLLs.
## Daniel Low: Changes Since Fork ###
- Changed DLL to Vault 6 Standard
- Refactored some code to improve readability (needs more work though)
- Fixed defect relating to "&" in csproj