1.git add . [file] add all file under '.' 2.git commit -m 'comment content' 3.git remote rm orgin 4.git remote add origin 'registory path' 5.git pull --rebase origin master (Gets remote and local synchronization) 6.git push -u origin master -- master is branch
|