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
53ef91b1
Commit
53ef91b1
authored
Mar 10, 2010
by
Stefan Monnier
Browse files
vc-git.el (vc-git-revision-table): Include remote branches.
parent
b41460ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/vc-git.el
lisp/vc-git.el
+2
-1
No files found.
lisp/ChangeLog
View file @
53ef91b1
2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
* vc-git.el (vc-git-revision-table): Include remote branches.
2010-03-10 Kim F. Storm <storm@cua.dk>
Animated image API.
...
...
lisp/vc-git.el
View file @
53ef91b1
...
...
@@ -673,7 +673,8 @@ or BRANCH^ (where \"^\" can be repeated)."
(
with-temp-buffer
(
vc-git-command
t
nil
nil
"for-each-ref"
"--format=%(refname)"
)
(
goto-char
(
point-min
))
(
while
(
re-search-forward
"^refs/\\(heads\\|tags\\)/\\(.*\\)$"
nil
t
)
(
while
(
re-search-forward
"^refs/\\(heads\\|tags\\|remotes\\)/\\(.*\\)$"
nil
t
)
(
push
(
match-string
2
)
table
)))
table
))
...
...
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