Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6a6d15ab
Commit
6a6d15ab
authored
Jan 25, 2010
by
Mark A. Hershberger
Browse files
merge
parents
d9de6d6f
504dcc71
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
etc/NEWS
etc/NEWS
+2
-0
lisp/ChangeLog
lisp/ChangeLog
+6
-1
lisp/vc-git.el
lisp/vc-git.el
+1
-1
No files found.
etc/NEWS
View file @
6a6d15ab
...
...
@@ -328,6 +328,8 @@ their content displayed.
**** vc-dir displays the stash status
**** vc-dir requires at least git-1.5.5.
*** vc-bzr supports operating with shelves: the shelve list is
displayed in the *vc-dir* header, shelves can be created, removed and applied.
...
...
lisp/ChangeLog
View file @
6a6d15ab
2010-01-2
4
Mark A. Hershberger <mah@everybody.org>
2010-01-2
5
Mark A. Hershberger <mah@everybody.org>
* progmodes/python.el: Replace reference to obsolete
c-subward-mode.
* vc-bzr.el: (vc-bzr-revision-table) New function.
2010-01-25 Eric Hanchrow <eric.hanchrow@gmail.com> (tiny change)
* vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
diff-index command. This requires at least git-1.5.5. (Bug#1589).
2010-01-24 Dan Nicolaescu <dann@ics.uci.edu>
Remove support for adding --signoff on commit.
...
...
lisp/vc-git.el
View file @
6a6d15ab
...
...
@@ -381,7 +381,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
(
vc-git-command
(
current-buffer
)
'async
files
"ls-files"
"-z"
"-o"
"-i"
"--directory"
"--no-empty-directory"
"--exclude-standard"
"--"
))
(
'diff-index
(
vc-git-command
(
current-buffer
)
'async
files
"diff-index"
"-z"
"-M"
"HEAD"
"--"
)))
(
vc-git-command
(
current-buffer
)
'async
files
"diff-index"
"--relative"
"-z"
"-M"
"HEAD"
"--"
)))
(
vc-exec-after
`
(
vc-git-after-dir-status-stage
(
quote
,
stage
)
(
quote
,
files
)
(
quote
,
update-function
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment