扫码关注官方订阅号
闭关修行中......
pull是将远程代码同步到本地,如果你是将本地代码提交到远程,三部曲:
git add .
git commit -m "your commit message"
git push origin master
当然我这里讲的很粗略,而且做了很多假设,假设你在当前的git目录,假设本地已经有个一个叫origin的remote等等
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
pull是将远程代码同步到本地,如果你是将本地代码提交到远程,三部曲:
git add .
git commit -m "your commit message"
git push origin master
当然我这里讲的很粗略,而且做了很多假设,假设你在当前的git目录,假设本地已经有个一个叫origin的remote等等