Nike shoes for men online UK

2013-10-05 Thread eorinw
Da wird eine romantische Fantasie für Frauen , der Brief , verfügt Tiffany eine magische Energie. Zahlreiche Schmuckstücke für Tiffany Co. hat bekam die Herzen von einigen hundert Jahren erworben . Tiffany Schmuck online günstig http://www.markenschmuckonlineoutlet.de/tiffany-schmuck sanfte

[PATCH] mergetools/diffmerge: support DiffMerge as a git mergetool

2013-10-05 Thread Stefan Saasen
DiffMerge is a non-free (but gratis) tool that supports OS X, Windows and Linux. See http://www.sourcegear.com/diffmerge/ DiffMerge includes a script `/usr/bin/diffmerge` that can be used to launch the graphical compare tool. This change adds mergetool support for DiffMerge and adds

Re: [PATCH] mingw-multibyte: fix memory acces violation and path length limits.

2013-10-05 Thread Wataru Noguchi
Hi, I put following printf logs. int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath) { static char path[PATH_MAX + 1]; struct stat st; int len = state-base_dir_len; if (topath) return

опрятность в жилище и коттедже за небольшие

2013-10-05 Thread andrey190
Наведем чистоту и порядок у Вас апартаментов, за разумные денежки. http://sticker.yadro.ru/go?url=http://www.adshorturl.com/846757 -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH] clone: local URLs are not for ssh

2013-10-05 Thread Matthieu Moy
Torsten Bögershausen tbo...@web.de writes: test_expect_success 'cloning myhost:src uses ssh' ' clear_ssh - git clone myhost:src ssh-clone + ! git clone myhost:src ssh-clone This succeeds if Git segfaults for example. Please, use test_must_fail instead of !. --

[RFC/PATCHv2 2/3] git-svn: Warn about changing default for --prefix in Git v2.0

2013-10-05 Thread Johan Herland
In Git v2.0, we will change the default --prefix for init/clone from none/empty to origin/ (which causes SVN-tracking branches to be placed at refs/remotes/origin/* instead of refs/remotes/*). This patch warns users about the upcoming change, both in the git-svn manual page, and on stderr when

[RFC/PATCHv2 3/3] Git 2.0: git svn: Set default --prefix='origin/' if --prefix is not given

2013-10-05 Thread Johan Herland
git-svn by default puts its Subversion-tracking refs directly in refs/remotes/*. This runs counter to Git's convention of using refs/remotes/$remote/* for storing remote-tracking branches. Furthermore, combining git-svn with regular git remotes run the risk of clobbering refs under refs/remotes

[RFC/PATCHv2 1/3] Documentation/git-svn: Promote the use of --prefix in docs + examples

2013-10-05 Thread Johan Herland
Currently, the git-svn defaults to using an empty prefix, which ends up placing the SVN-tracking refs directly in refs/remotes/*. This placement runs counter to Git's convention of placing remote-tracking branches in refs/remotes/$remote/*. Furthermore, combining git-svn with regular Git remotes

GSS-Negotiate authentication requires that all data fit into postbuffer

2013-10-05 Thread brian m. carlson
One thing I just noticed is that if git is using GSS-Negotiate authentication, the entire POST contents have to fit into however much memory is specified by http.postbuffer: vauxhall ok % git push https://b...@git.crustytoothpaste.net/git/bmc/test.git development Counting objects: 37994,

[PATCH] log_tree_diff: die when we fail to parse a commit

2013-10-05 Thread Jeff King
We currently call parse_commit and then assume we can dereference the resulting tree struct field. If parsing failed, however, that field is NULL and we end up segfaulting. Instead of a segfault, let's print an error message and die a little more gracefully. Note that this should never happen in