-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Jim Meyering on 4/23/2009 11:45 PM: > To update the submodule to latest, I did this: > > ( cd gnulib && git pull ) > > then ran "git commit --amend -a" to add that change to your change set.
You can also run: git submodule foreach git pull origin master to avoid the subshell. Personally, I did: git config --global alias.syncsub \ 'submodule foreach git pull origin master' so that I can just do 'git syncsub' to get the same effect. - -- Don't work too hard, make some time for fun as well! Eric Blake [email protected] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAknxp9QACgkQ84KuGfSFAYB4iQCgmkKn7EG1yAazz4jOYrINjv3N cgUAnie8yxQmsbqp6HQ7N313l9qLEOnw =kfsp -----END PGP SIGNATURE----- _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
