blob: 7ff1d5d0d100fc632208f4cbb67189ecbf58e9a4 [file] [log] [blame]
Shawn O. Pearce8492f002007-10-15 22:29:50 -04001GIT v1.5.3.5 Release Notes
2==========================
3
4Fixes since v1.5.3.4
5--------------------
6
Shawn O. Pearce2ee52eb2007-10-20 23:40:06 -04007 * Comes with git-gui 0.8.4.
8
Shawn O. Pearce33c8d382007-10-16 20:09:21 -04009 * "git-config" silently ignored options after --list; now it will
Shawn O. Pearce8492f002007-10-15 22:29:50 -040010 error out with a usage message.
11
12 * "git-config --file" failed if the argument used a relative path
13 as it changed directories before opening the file.
14
Shawn O. Pearce1aa3d012007-10-18 03:11:03 -040015 * "git-config --file" now displays a proper error message if it
16 cannot read the file specified on the command line.
17
Shawn O. Pearce09955202007-10-16 23:31:58 -040018 * "git-config", "git-diff", "git-apply" failed if run from a
19 subdirectory with relative GIT_DIR and GIT_WORK_TREE set.
20
Shawn O. Pearce1aa3d012007-10-18 03:11:03 -040021 * "git-blame" crashed if run during a merge conflict.
22
Shawn O. Pearce8492f002007-10-15 22:29:50 -040023 * "git-add -i" did not handle single line hunks correctly.
24
Shawn O. Pearcebbaf63f2007-10-19 01:18:29 -040025 * "git-rebase -i" and "git-stash apply" failed if external diff
26 drivers were used for one or more files in a commit. They now
27 avoid calling the external diff drivers.
Shawn O. Pearce09955202007-10-16 23:31:58 -040028
Shawn O. Pearce8492f002007-10-15 22:29:50 -040029 * "git-log --follow" did not work unless diff generation (e.g. -p)
30 was also requested.
31
Shawn O. Pearce2ee52eb2007-10-20 23:40:06 -040032 * "git-log --follow -B" did not work at all. Fixed.
33
34 * "git-log -M -B" did not correctly handle cases of very large files
35 being renamed and replaced by very small files in the same commit.
36
Shawn O. Pearce8492f002007-10-15 22:29:50 -040037 * "git-log" printed extra newlines between commits when a diff
38 was generated internally (e.g. -S or --follow) but not displayed.
39
Shawn O. Pearce09955202007-10-16 23:31:58 -040040 * "git-push" error message is more helpful when pushing to a
41 repository with no matching refs and none specified.
42
Shawn O. Pearce2ee52eb2007-10-20 23:40:06 -040043 * "git-push" now respects + (force push) on wildcard refspecs,
44 matching the behavior of git-fetch.
45
Shawn O. Pearce09955202007-10-16 23:31:58 -040046 * "git-filter-branch" now updates the working directory when it
47 has finished filtering the current branch.
48
49 * "git-instaweb" no longer fails on Mac OS X.
50
Shawn O. Pearcebbaf63f2007-10-19 01:18:29 -040051 * "git-cvsexportcommit" didn't always create new parent directories
52 before trying to create new child directories. Fixed.
53
54 * "git-fetch" printed a scary (but bogus) error message while
55 fetching a tag that pointed to a tree or blob. The error did
56 not impact correctness, only user perception. The bogus error
57 is no longer printed.
58
Shawn O. Pearce2ee52eb2007-10-20 23:40:06 -040059 * "git-ls-files --ignored" did not properly descend into non-ignored
60 directories that themselves contained ignored files if d_type
61 was not supported by the filesystem. This bug impacted systems
62 such as AFS. Fixed.
63
Shawn O. Pearcebbaf63f2007-10-19 01:18:29 -040064 * Git segfaulted when reading an invalid .gitattributes file. Fixed.
65
David D Kilzeree787402007-11-03 07:04:52 -070066 * post-receive-email example hook was fixed for non-fast-forward
67 updates.
Shawn O. Pearce1aa3d012007-10-18 03:11:03 -040068
Shawn O. Pearce33c8d382007-10-16 20:09:21 -040069 * Documentation updates for supported (but previously undocumented)
Shawn O. Pearce8492f002007-10-15 22:29:50 -040070 options of "git-archive" and "git-reflog".
71
72 * "make clean" no longer deletes the configure script that ships
73 with the git tarball, making multiple architecture builds easier.
Junio C Hamanoe720c432007-10-29 12:02:59 -070074
75 * "git-remote show origin" spewed a warning message from Perl
76 when no remote is defined for the current branch via
77 branch.<name>.remote configuration settings.
78
79 * Building with NO_PERL_MAKEMAKER excessively rebuilt contents
80 of perl/ subdirectory by rewriting perl.mak.
81
82 * http.sslVerify configuration settings were not used in scripted
83 Porcelains.
84
85 * "git-add" leaked a bit of memory while scanning for files to add.
86
87 * A few workarounds to squelch false warnings from recent gcc have
88 been added.
89
Junio C Hamano0bdb5af2007-10-30 21:32:49 -070090 * "git-send-pack $remote frotz" segfaulted when there is nothing
91 named 'frotz' on the local end.
92
David D Kilzerf49439e2007-11-04 04:45:22 -080093 * "git-rebase --interactive" did not handle its "--strategy" option
Junio C Hamano0bdb5af2007-10-30 21:32:49 -070094 properly.