File tree 2 files changed +48
-1
lines changed
2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,49 @@ And it must be accessible in your `$PATH`:
25
25
26
26
$ sudo ln -s gitcrypt /usr/local/bin/gitcrypt
27
27
28
+ ### For Windows
29
+
30
+ ** Verified on PortableGit Only !**
31
+
32
+ Copy the file gitcrypt to your PortableGit/bin location. In my environment PortableGit is
33
+ available at E:\PortableGit.
34
+
35
+ > copy gitcrypt E:\PortableGit\bin
36
+
37
+ Also make sure that PATH environment variable has E:\PortableGit\bin
38
+ available in it.
39
+
40
+ > Path=C:\Python27\; C:\Python27\Scripts;E:\PortableGit\bin;E:\PortableGit\libexec\git-core;C:\windows\system32;C:\windows\; C:\window
41
+ > s\system32\WBEM;c:\windows\System32\WindowsPowerShell\v1.0\; c:\i386\~ configs;C:\Users\VKHANORK\AppData\Roaming\Python\Scripts
42
+
43
+ Setup gitcrypt:
44
+
45
+ > E:\> mkdir TEST
46
+ >
47
+ > E:\> cd TEST
48
+ >
49
+ > E:\TEST>git init
50
+ > Initialized empty Git repository in E:/TEST/.git/
51
+ >
52
+ > E:\TEST>git config core.autocrlf false
53
+ >
54
+ > E:\TEST>E:\PortableGit\bin\bash.exe E:\PortableGit\bin\gitcrypt init
55
+ > Generate a random salt? [ Y/n]
56
+ > Generate a random password? [ Y/n]
57
+ > What encryption cipher do you want to use? [ aes-256-ecb]
58
+ >
59
+ > This configuration will be stored:
60
+ >
61
+ > salt: 5ecc05565042de81
62
+ > pass: iLC#GkuzE1iOmUVItIQww8** oBDTfKE2
63
+ > cipher: aes-256-ecb
64
+ >
65
+ > Does this look right? [ Y/n]
66
+ > Do you want to use .git/info/attributes? [ Y/n]
67
+ > What files do you want encrypted? [ * ]
68
+ >
69
+ > E:\TEST>
70
+
28
71
## Configuration
29
72
30
73
To quickly setup gitcrypt interactively, run ` gitcrypt init ` from the root
Original file line number Diff line number Diff line change @@ -156,7 +156,11 @@ case "$1" in
156
156
;;
157
157
* )
158
158
# Not a valid option
159
- echo " Gitcrypt: command does not exist: $1 "
159
+ if [ -z " $1 " ]; then
160
+ echo " Gitcrypt: available options: init, version"
161
+ else
162
+ echo " Gitcrypt: command does not exist: $1 "
163
+ fi
160
164
exit 1
161
165
;;
162
166
esac
You can’t perform that action at this time.
0 commit comments