Home > Article > Web Front-end > git submission method
1.git clone 项目url 2.复制.git 和文件到根目录 3.git add . 4.git commit -m "XXXX(提交说明)" 5.git push -u origin master(仓库名)
git pull 下拉代码 git pull -u origin master:master
The above is the detailed content of git submission method. For more information, please follow other related articles on the PHP Chinese website!