0


Git--基本操作介绍(2)

在这里插入图片描述

Git 常用的是以下 6 个命令:git clone、git push、git add 、git commit、git checkout、git pull.
在这里插入图片描述
说明:

  • workspace:工作区
  • staging area:暂存区/缓存区
  • local repository:版本库或本地仓库
  • remote repository:远程仓库

一个简单的操作步骤:

$ git init    
$ gitadd.    
$ git commit  
  • git init - 初始化仓库。
  • git add . - 添加文件到暂存区。
  • git commit - 将暂存区内容添加到仓库中。

下表列出了 git 创建仓库的命令:
在这里插入图片描述
提交与修改:

Git 的工作就是创建和保存你的项目的快照及与之后的快照进行对比。

下表列出了有关创建与提交你的项目的快照的命令:
在这里插入图片描述
提交日志:
在这里插入图片描述
远程操作
在这里插入图片描述

标签: git

本文转载自: https://blog.csdn.net/weixin_42367888/article/details/135756565
版权归原作者 普通研究者 所有, 如有侵权,请联系我们删除。

“Git--基本操作介绍(2)”的评论:

还没有评论