~ubuntu-branches/ubuntu/gutsy/git-core/gutsy-updates

« back to all changes in this revision

Viewing changes to ident.c

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-06-19 17:32:30 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20070619173230-g0xnsa5lw7uvmk80
Tags: 1:1.5.2.2-1
* new upstream point release.
  * Fix typo in remote branch example in git user manual (closes: #427502).
* debian/diff/0003-git-branch-track-fix-tracking-branch-computation.diff:
  remove; applied upstream.
* debian/versions.upstream: new; ordered list of upstream versions,
  starting with 1.0.0.
* debian/changelog.upstream.sh: new; create changelog.upstream from git
  shortlog using debian/versions.upstream.
* debian/changelog.upstream: re-created through changelog.upstream.sh.
* debian/diff/0003-git-svn-trailing-slash-in-prefix-is-mandatory-with.diff:
  new; git-svn: trailing slash in prefix is mandatory with --branches/-b
  (closes: #429443).

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
        if (!name)
197
197
                name = git_default_name;
198
198
        if (!email)
 
199
                email = git_default_email;
 
200
        if (!email)
199
201
                email = getenv("EMAIL");
200
 
        if (!email)
201
 
                email = git_default_email;
202
202
 
203
203
        if (!*name) {
204
204
                struct passwd *pw;