debian: new upstream point release
[git/debian.git] / debian / git.NEWS
blob1da3b43dd6ca67598011d6ea81e322ed68e989dc
1 git (1:1.8.4~rc0-1) experimental; urgency=low
3   Starting with this version, gitweb and "git daemon" on Debian are
4   configured to look for repositories under /var/lib/git by default
5   instead of /var/cache/git.  You may want to adjust your inetd,
6   rsyncd, and web server configuration to use the new base path.
8   See /usr/share/doc/git/README.Debian for details.
10   Symlinks are installed during the upgrade to ensure existing
11   repositories remain accessible.  If no local scripts or
12   configuration depend on /var/cache/git then it is safe to remove
13   the old directory after replacing these symlinks with their
14   targets:
16     mv --backup /var/cache/git/* /var/lib/git/
17     rmdir /var/cache/git
18     rm /var/lib/git/*~
20  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 28 Jul 2013 17:46:05 -0700
22 git (1:1.8.2~rc0-1) experimental; urgency=low
24   The default behavior of "git push" when run without specifying any
25   ref names will change in the upcoming Git 2.0 release.
27   The previous default behavior was to use "matching" semantics: push
28   all branches for which there is already a branch of the same name on
29   the remote end.  The new default is "simple" semantics: push the
30   current branch to a branch of the same name, provided that "git
31   pull" is configured to integrate with that branch.  You can get a
32   glimpse of the future with
34         echo '[push] default = simple' >>~/.gitconfig
36   See Documentation/RelNotes/1.8.2.txt and the entry on push.default
37   in git-config(1) for details.
39  -- Jonathan Nieder <jrnieder@gmail.com>  Mon, 18 Feb 2013 16:48:53 -0800
41 git (1:1.8.0-1) experimental; urgency=low
43   Git's bash completion script is now loaded on the fly when tab
44   completion is attempted for the 'git' or 'gitk' command.  This
45   change involved moving the completion script.  If your ~/.bashrc
46   previously contained
48     . /etc/bash_completion.d/git
50   then it should be corrected to
52     if [ -e /usr/share/bash-completion/completions/git ]; then
53       . /usr/share/bash-completion/completions/git
54     elif [ -e /etc/bash_completion.d/git ]; then
55       . /etc/bash_completion.d/git
56     fi
58   or, better,
60     . /etc/bash_completion
62   See /usr/share/doc/bash-completion/README.Debian for details.
64  -- Jonathan Nieder <jrnieder@gmail.com>  Sun, 13 Jan 2013 08:59:42 -0800