2024年11月09日 建站教程
Git语法中我们会用到哪些基本命令?下面web建站小编给大家简单介绍一下!
git初始化仓库:
git init
git克隆仓库:
git clone https://github.com/username/repo.git
git添加文件:
git add README.md
git提交文件:
git commit -m "Add README.md"
git推送到远程:
git push origin master
git创建分支:
git branch testing
git切换分支:
git checkout testing
git合并分支:
git merge testing
git拉取远程仓库:
git pull origin master
git查看状态:
git status
git查看日志:
git log
本文链接:http://so.lmcjl.com/news/17386/