I have forked a private repository (an iPhone project) as follows:
cd nameofdirectory git init git clone forkedURL
Now I want to push the chang
git add myfile.h git commit -m "your commit message" git push -u origin master
if you don't remember all the files you need to update, use
git status