mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-08 11:33:47 -05:00
Compare commits
89 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f112f9b830 | ||
|
|
0184570176 | ||
|
|
5e25040a97 | ||
|
|
bb191c1939 | ||
|
|
4a5f1df129 | ||
|
|
081832380c | ||
|
|
b11669a2eb | ||
|
|
aebbbd335e | ||
|
|
3366704c8f | ||
|
|
a71120ca8f | ||
|
|
68b3f3b3d6 | ||
|
|
3ad9b0d9fa | ||
|
|
e047558bee | ||
|
|
4b69204679 | ||
|
|
3026076ab5 | ||
|
|
762bfa7979 | ||
|
|
57831bb5c1 | ||
|
|
2e4c9236d6 | ||
|
|
3933bfdc57 | ||
|
|
fe7f04ebdf | ||
|
|
2c0574594d | ||
|
|
389efdcf14 | ||
|
|
1e6d7c8a40 | ||
|
|
d5f8446158 | ||
|
|
383b2a43df | ||
|
|
95311ab2d9 | ||
|
|
ca4e18c81f | ||
|
|
1eeff6c349 | ||
|
|
9e05d7ee03 | ||
|
|
55fac5dd74 | ||
|
|
d6615891c2 | ||
|
|
af9d44f91b | ||
|
|
156123520b | ||
|
|
33ea0aa4e7 | ||
|
|
9bbea8a2a1 | ||
|
|
882597d17e | ||
|
|
64ead8ea1c | ||
|
|
ab35c2d9ab | ||
|
|
affce710e2 | ||
|
|
a5e9b2e93e | ||
|
|
22a832f958 | ||
|
|
e954d364f5 | ||
|
|
0b4e32180b | ||
|
|
b3f38c4886 | ||
|
|
6ba88784a2 | ||
|
|
e64870df9c | ||
|
|
de602e3676 | ||
|
|
119fd9e1ad | ||
|
|
24efca8f4f | ||
|
|
9d02bf0868 | ||
|
|
45fe471b44 | ||
|
|
a8bd148683 | ||
|
|
ea89d6ec12 | ||
|
|
6ea8f2a2ae | ||
|
|
15282dde17 | ||
|
|
bdab318cc6 | ||
|
|
ea588a104c | ||
|
|
2b9faa8c7f | ||
|
|
562ab96b2f | ||
|
|
a1cc7f3fbd | ||
|
|
a8109a541d | ||
|
|
794c21484d | ||
|
|
7390538db0 | ||
|
|
559425cafa | ||
|
|
8fcc5cb349 | ||
|
|
3121f01f59 | ||
|
|
ffcc12de5f | ||
|
|
6c44c4795e | ||
|
|
27e2212ac0 | ||
|
|
2ed441fde7 | ||
|
|
66812106e8 | ||
|
|
24c5a45431 | ||
|
|
1f0bc8cff9 | ||
|
|
ccfc60e550 | ||
|
|
57393e7956 | ||
|
|
4975e76935 | ||
|
|
e3e31ce9d7 | ||
|
|
56b8ad786b | ||
|
|
6b55a997a9 | ||
|
|
b812cb3bcd | ||
|
|
13fd856db9 | ||
|
|
1548f141e0 | ||
|
|
f05eb566e6 | ||
|
|
43290adc85 | ||
|
|
5f64bb35c9 | ||
|
|
f41e5c9679 | ||
|
|
9c86a7d379 | ||
|
|
05c0efacab | ||
|
|
0c99745853 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/doc/tags
|
||||
70
README.markdown
Normal file
70
README.markdown
Normal file
@@ -0,0 +1,70 @@
|
||||
fugitive.vim
|
||||
============
|
||||
|
||||
I'm not going to lie to you; fugitive.vim may very well be the best
|
||||
Git wrapper of all time. Check out these features:
|
||||
|
||||
View any blob, tree, commit, or tag in the repository with `:Gedit` (and
|
||||
`:Gsplit`, `:Gvsplit`, `:Gtabedit`, ...). Edit a file in the index and
|
||||
write to it to stage the changes. Use `:Gdiff` to bring up the staged
|
||||
version of the file side by side with the working tree version and use
|
||||
Vim's diff handling capabilities to stage a subset of the file's
|
||||
changes.
|
||||
|
||||
Bring up the output of `git status` with `:Gstatus`. Press `-` to
|
||||
`add`/`reset` a file's changes, or `p` to `add`/`reset` `--patch` that
|
||||
mofo. And guess what `:Gcommit` does!
|
||||
|
||||
`:Gblame` brings up an interactive vertical split with `git blame`
|
||||
output. Press enter on a line to reblame the file as it stood in that
|
||||
commit, or `o` to open that commit in a split. When you're done, use
|
||||
`:Gedit` in the historic buffer to go back to the work tree version.
|
||||
|
||||
`:Gmove` does a `git mv` on a file and simultaneously renames the
|
||||
buffer. `:Gremove` does a `git rm` on a file and simultaneously deletes
|
||||
the buffer.
|
||||
|
||||
Use `:Ggrep` to search the work tree (or any arbitrary commit) with
|
||||
`git grep`, skipping over that which is not tracked in the repository.
|
||||
`:Glog` loads all previous revisions of a file into the quickfix list so
|
||||
you can iterate over them and watch the file evolve!
|
||||
|
||||
`:Gread` is a variant of `git checkout -- filename` that operates on the
|
||||
buffer rather than the filename. This means you can use `u` to undo it
|
||||
and you never get any warnings about the file changing outside Vim.
|
||||
`:Gwrite` writes to both the work tree and index versions of a file,
|
||||
making it like `git add` when called from a work tree file and like
|
||||
`git checkout` when called from the index or a blob in history.
|
||||
|
||||
Use `:Gbrowse` to open the current file on GitHub, with optional line
|
||||
range (try it in visual mode!). If your current repository isn't on
|
||||
GitHub, `git instaweb` will be spun up instead.
|
||||
|
||||
Add `%{fugitive#statusline()}` to `'statusline'` to get an indicator
|
||||
with the current branch in (surprise!) your statusline.
|
||||
|
||||
Oh, and of course there's `:Git` for running any arbitrary command.
|
||||
|
||||
Like fugitive.vim? Follow the repository on
|
||||
[GitHub](http://github.com/tpope/vim-fugitive) and vote for it on
|
||||
[vim.org](http://www.vim.org/scripts/script.php?script_id=2975).
|
||||
|
||||
FAQ
|
||||
---
|
||||
|
||||
> I installed the plugin and started Vim. Why don't any of the commands
|
||||
> exist?
|
||||
|
||||
Fugitive cares about the current file, not the current working
|
||||
directory. Edit a file from the repository.
|
||||
|
||||
> I opened a new tab. Why don't any of the commands exist?
|
||||
|
||||
Fugitive cares about the current file, not the current working
|
||||
directory. Edit a file from the repository.
|
||||
|
||||
> I changed the current working directory. Why do all the commands use
|
||||
> the old directory?
|
||||
|
||||
Fugitive cares about the current file, not the current working
|
||||
directory. Edit a file from the repository.
|
||||
@@ -1,6 +1,6 @@
|
||||
*fugitive.txt* A Git wrapper so awesome, it should be illegal
|
||||
|
||||
Author: Tim Pope <vimNOSPAM@tpope.info> *fugitive-author*
|
||||
Author: Tim Pope <vimNOSPAM@tpope.org> *fugitive-author*
|
||||
License: Same terms as Vim itself (see |license|)
|
||||
|
||||
This plugin is only available if 'compatible' is not set.
|
||||
@@ -51,9 +51,15 @@ that are part of Git repositories).
|
||||
|
||||
*fugitive-:Gstatus*
|
||||
:Gstatus Bring up the output of git-status in the preview
|
||||
window. Press - to stage or unstage the file on the
|
||||
cursor line. Press p to do so on a per hunk basis
|
||||
(--patch). Press C to invoke |:Gcommit|.
|
||||
window. In addition to standard motions, you can
|
||||
use <C-N> and <C-P> to jump from filename to
|
||||
filename. Press C to invoke |:Gcommit|. Press D to
|
||||
|:Gdiff| the file on the cursor line, or ds to
|
||||
|:Gsdiff|. Press - to stage or unstage the file on
|
||||
the cursor line. Press p to do so on a per hunk basis
|
||||
(--patch). All of D, -, and p have a different,
|
||||
sensible (and hopefully intuitive) behavior when
|
||||
invoked on a heading rather than a file name.
|
||||
|
||||
*fugitive-:Gcommit*
|
||||
:Gcommit [args] A wrapper around git-commit. If there is nothing
|
||||
@@ -101,9 +107,6 @@ that are part of Git repositories).
|
||||
:{range}Gread [revision]
|
||||
|:read| in a |fugitive-revision| after {range}.
|
||||
|
||||
*fugitive-:Gread!*
|
||||
:Gread! [revision] Deprecated synonym for |:Gread|.
|
||||
|
||||
*fugitive-:Gwrite*
|
||||
:Gwrite Write to the current file's path and stage the results.
|
||||
When run in a work tree file, it is effectively git
|
||||
@@ -117,6 +120,13 @@ that are part of Git repositories).
|
||||
:0:foo.txt or even :0 to write to just that stage in
|
||||
the index.
|
||||
|
||||
*fugitive-:Gwq*
|
||||
:Gwq [path] Like |:Gwrite| followed by |:quit| if the write
|
||||
succeeded.
|
||||
|
||||
:Gwq! [path] Like |:Gwrite|! followed by |:quit|! if the write
|
||||
succeeded.
|
||||
|
||||
*fugitive-:Gdiff*
|
||||
:Gdiff [revision] Perform a |vimdiff| against the current file in the
|
||||
given revision. With no argument, the version in the
|
||||
@@ -126,6 +136,12 @@ that are part of Git repositories).
|
||||
to the right. Use |do| and |dp| and write to the
|
||||
index file to simulate "git add --patch".
|
||||
|
||||
*fugitive-:Gsdiff*
|
||||
:Gsdiff [revision] Like |:Gdiff|, but split horizontally.
|
||||
|
||||
*fugitive-:Gvdiff*
|
||||
:Gvdiff [revision] Identical to |:Gdiff|. For symmetry with |:Gsdiff|.
|
||||
|
||||
*fugitive-:Gmove*
|
||||
:Gmove {destination} Wrapper around git-mv that renames the buffer
|
||||
afterward. The destination is relative to the current
|
||||
@@ -139,11 +155,35 @@ that are part of Git repositories).
|
||||
buffer.
|
||||
|
||||
*fugitive-:Gblame*
|
||||
:Gblame Run git-blame on the file and open the results in a
|
||||
:Gblame [flags] Run git-blame on the file and open the results in a
|
||||
scroll bound vertical split. Press enter on a line to
|
||||
reblame the file as it was in that commit.
|
||||
reblame the file as it was in that commit. You can
|
||||
give any of ltwfsMC as flags and they will be passed
|
||||
along to git-blame.
|
||||
|
||||
:[range]Gblame Run git-blame on the given range.
|
||||
:[range]Gblame [flags] Run git-blame on the given range.
|
||||
|
||||
*fugitive-:Gbrowse*
|
||||
:[range]Gbrowse If the remote for the current branch is on GitHub,
|
||||
open the current file, blob, tree, commit, or tag
|
||||
(with git-web--browse) on GitHub. Otherwise, open the
|
||||
current file, blob, tree, commit, or tag in
|
||||
git-instaweb (if you have issues, verify you can run
|
||||
"git instaweb" from a terminal). If a range is given,
|
||||
it is appropriately appended to the URL as an anchor.
|
||||
|
||||
:[range]Gbrowse! Like :Gbrowse, but put the URL on the clipboard rather
|
||||
than opening it.
|
||||
|
||||
:[range]Gbrowse {revision}
|
||||
Like :Gbrowse, but for a given |fugitive-revision|. A
|
||||
useful value here is -, which ties the URL to the
|
||||
latest commit rather than a volatile branch.
|
||||
|
||||
:[range]Gbrowse [...]@{remote}
|
||||
Force using the given remote rather than the remote
|
||||
for the current branch. The remote is used to
|
||||
determine which GitHub repository to link to.
|
||||
|
||||
MAPPINGS *fugitive-mappings*
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user