> +------------------------------------------------ > +$ cat >~/.gitconfig > +[user] > + name = Your Name Comes Here > + email = you@xxxxxxxxxxxxxxxxxxxxxx > +^D > +------------------------------------------------ I used to use the ^D convention when explaining git to beginners and I noticed some people try to cut-and-paste it. So the following might be a better way to put it: +$ cat <<EOF >~/.gitconfig +[user] + name = Your Name Comes Here + email = you@xxxxxxxxxxxxxxxxxxxxxx +EOF -- MST - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html