Heim > Fragen und Antworten > Hauptteil
PHP中文网2017-04-18 10:48:13
pull是将远程代码同步到本地,如果你是将本地代码提交到远程,三部曲:
git add .
git commit -m "your commit message"
git push origin master
当然我这里讲的很粗略,而且做了很多假设,假设你在当前的git目录,假设本地已经有个一个叫origin的remote等等