Skip to content

Commit 7bee9a8

Browse files
author
Woody Gilk
committed
Merge pull request shadowhand#13 from linuxtechie/master
Nothing much, howto on Windoze and small script check.
2 parents 6622200 + 90d58bd commit 7bee9a8

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed

README.md

+43
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,49 @@ And it must be accessible in your `$PATH`:
2525

2626
$ sudo ln -s gitcrypt /usr/local/bin/gitcrypt
2727

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+
2871
## Configuration
2972

3073
To quickly setup gitcrypt interactively, run `gitcrypt init` from the root

gitcrypt

+5-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,11 @@ case "$1" in
156156
;;
157157
*)
158158
# 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
160164
exit 1
161165
;;
162166
esac

0 commit comments

Comments
 (0)