From c91c47c97819401c78bda51265a9f3616af323ef Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Sat, 6 Apr 2013 16:24:01 -0400 Subject: [PATCH] fix mistake in git example commands --- doc/manual/packages.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/manual/packages.rst b/doc/manual/packages.rst index cb09a583497fe..be3275f88ebf9 100644 --- a/doc/manual/packages.rst +++ b/doc/manual/packages.rst @@ -70,9 +70,12 @@ already have one. For example, create a new repository called 6. Add at least one git commit and push it to the remote repository:: # Do some stuff - git add #new files + git add -A . #for all changes, or give an explicit file list to avoid checking in binaries and temporary git commit - git push remote github + git push -u github master + +7. If the previous commands are new to you, this is probably a good time to +go read an explanation of how git works. Distributing a Julia package ~~~~~~~~~~~~~~~~~~~~~~~~~~~~