I have a repository on GitHub at https://github.com/andrewthommo/ComA
I have newly created source on my local file system that I would like to enter into that repository. After looking at this answer I tried using Git from the command line with:
git remote -m MyEmail@gmail.com:andrewthommo/ComA.git
error: unknown switch `m'
..and also..
git remote add -m MyEmail@gmail.com:andrewthommo/ComA.git
usage: git remote add [<options>] <name> <url>
Obviously, I am very confused. Can anybody see where I am going wrong?
(I am currently looking through Git for beginners: The definitive practical guide for tips..)