mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-26 19:18:50 +00:00
* admin/update_autogen (commit): With git, call "add" before "commit".
This commit is contained in:
parent
11b65bc080
commit
ec7e07b333
@ -1,3 +1,7 @@
|
||||
2014-12-01 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* update_autogen (commit): With git, call "add" before "commit".
|
||||
|
||||
2014-11-19 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Lessen focus on ChangeLog files, as opposed to change log entries.
|
||||
|
@ -228,6 +228,10 @@ commit ()
|
||||
|
||||
echo "Committing..."
|
||||
|
||||
[ "$vcs" = "git" ] && {
|
||||
$vcs add "$@" || return $?
|
||||
}
|
||||
|
||||
$vcs commit -m "Auto-commit of $type files." "$@" || return $?
|
||||
|
||||
[ "$vcs" = "git" ] && {
|
||||
|
Loading…
Reference in New Issue
Block a user