This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[settings] | |
skip.git = false | |
skip.hg = false | |
[workspaces] | |
# List of the workspaces to search. '~' will be expanded. | |
;workspace0 = ~/workspace | |
;foo = C:/workspace | |
;bar = /home/user/workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in `ls | grep .git` | |
do | |
"tar" "czf" "${i/.git/.tar.gz}" "$i" | |
done | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# http://stackoverflow.com/questions/255202/ | |
# > how-do-i-view-git-diff-output-with-visual-diff-program | |
# by VonC - http://stackoverflow.com/users/6309/vonc | |
# diff is called by git with 7 parameters: | |
# path old-file old-hex old-mode new-file new-hex new-mode | |
# Specify this script globaly as diff.external: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Creating a git repo with a merge conflict for testing purposes. | |
mkdir merge | |
cd merge | |
git init | |
echo "BASE" > conflict.txt | |
git add conflict.txt | |
git commit -m "Initial commit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO off | |
SET /P destination=compare to folder in: | |
python %USERPROFILE%\bin\check-mp3-backup.py -d%destination% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"7zipportable": "4.65 Rev 3", | |
"irfanview": "427", | |
"java": "21", | |
"kdiff3": "0.9.95", | |
"keepassportable": "1.17", | |
"launchy": "2.5", | |
"firefoxportable": "3.6.8", | |
"thunderbird": "3.1.2", | |
"notepadpp": "5.7", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[uniload] | |
# WARNING!!! | |
# uniload overrides files in the given path without warning. Test your | |
# configuration first by running uniload in test mode which gives a preview | |
# without any actual operations on the filesystem. | |
# | |
# Run testmode by starting uniload with option "-t": | |
# | |
# $ uniload.py -t | |
# |