>> Could someone please explain what the above statement means and perhaps just >> include the git command I need to run to fulfill the requirement? > > To add remotes, you want something like: > git remote add nameofremote gitrepourl > for instance, > git remote add github_backup [email protected]:rburchell/foo.git > git push github_backup master > > would add a new remote to my current repository, and sync the 'master' > branch up to it
You might also want to read through the git community book[1] at times. It's quite useful in getting you going on git. [1]http://book.git-scm.com/index.html _______________________________________________ Development mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/development
