现在的位置: 网页制作教程网站制作经验 >正文
服务器问题和教程

一些基本的Git命令

发表于2017/2/26 网站制作经验 0条评论 ⁄ 热度 1,956℃

1. 检出项目到本地

git clone git@github.com:michaelliao/gitskills.git

2. 查看当前工作区状态

git status

3. 添加文件或文件夹至版本库

添加文件至版本库

git add index.html

添加文件夹至版本库 git add img/

4. 确认提交当前修改

git commit -m "git tracks changes"

5. 相当于是从远程获取最新版本并merge到本地

git pull origin master:master

6. 更新到远程服务器

git push origin master:master
  • 暂无评论