OSDN Git Service

git-core/git.git
17 years agogit-gui: Started construction of fetch and push operations.
Shawn O. Pearce [Tue, 7 Nov 2006 04:13:23 +0000 (23:13 -0500)]
git-gui: Started construction of fetch and push operations.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Misc. nit type of bug fixes.
Shawn O. Pearce [Tue, 7 Nov 2006 03:03:05 +0000 (22:03 -0500)]
git-gui: Misc. nit type of bug fixes.

 * Make sure we are in the top level working directory.  This
   way we can access files using their repository path.

 * Reload the diff viewer if the current file's status has changed;
   as the diff may now be different.

 * Correctly handle the 'AD' file state: added but now gone from
   the working directory.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Implemented amended commits.
Shawn O. Pearce [Tue, 7 Nov 2006 02:34:10 +0000 (21:34 -0500)]
git-gui: Implemented amended commits.

Also fixed a bug related that caused a crash if the file currently
in the diff viewer is no longer modified after the commit.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Finished commit implementation.
Shawn O. Pearce [Tue, 7 Nov 2006 01:50:59 +0000 (20:50 -0500)]
git-gui: Finished commit implementation.

We can now commit any type of commit (initial, normal or merge) using
the same techniques as git-commit.sh does for these types of things.

If invoked as git-citool we run exit immediately after the commit was
finished.  If invoked as git-gui then we stay running.

Also fixed a bug which caused the commit message buffer to be lost
when the application shutdown and restarted.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Verify we should actually perform a commit when asked to do so.
Shawn O. Pearce [Tue, 7 Nov 2006 01:03:36 +0000 (20:03 -0500)]
git-gui: Verify we should actually perform a commit when asked to do so.

A user shouldn't perform a commit if any of the following are true:

 * The repository state has changed since the last rescan.
 * There are no files updated in the index to commit.
 * There are unmerged stages still in the index.
 * The commit message has not been provided.
 * The pre-commit hook is executable and declined.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Corrected keyboard bindings on Windows, improved state management.
Shawn O. Pearce [Tue, 7 Nov 2006 00:12:58 +0000 (19:12 -0500)]
git-gui: Corrected keyboard bindings on Windows, improved state management.

When we are refreshing from the index or updating the index we shouldn't
let the user cause other index based operations to occur as these would
likely conflict with the currently running operations possibly causing
some index changes to be lost.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Fixed UI layout problems on Windows.
Shawn O. Pearce [Mon, 6 Nov 2006 23:22:19 +0000 (18:22 -0500)]
git-gui: Fixed UI layout problems on Windows.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Additional early feature development.
Shawn O. Pearce [Mon, 6 Nov 2006 21:07:32 +0000 (16:07 -0500)]
git-gui: Additional early feature development.

 * Run refresh before diff-index.
 * Load saved commit message during rescan.
 * Save current commit message (if any) during quit.
 * Add Signed-off-by line to commit buffer.
 * Batch update-index invocations through --stdin.
 * Better highlight which file is in the diff viewer.
 * Key bindings for signoff, check-in all and commit.
 * Improved formatting of status table within source.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
17 years agogit-gui: Initial revision.
Shawn O. Pearce [Mon, 6 Nov 2006 19:20:27 +0000 (14:20 -0500)]
git-gui: Initial revision.

This is based on Paul Mackerras' gitool prototype which he offered up
to the community earlier in 2006.  Its mostly however a rewrite from
scratch of a Tcl/Tk based graphical interface for Git and the most
common commands users might need to perform.

Currently it can display the status of the current repository, and not
much else.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>