没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
1. 初始化仓库
git init
� 功能:在一个目录中初始化一个新的 Git 仓库。
� 例子:
�
$ git init
Initialized empty Git repository in /path/to/your/project/.git/
�
�
2. 克隆仓库
git clone [URL]
� 功能:从远程仓库克隆一个项目到本地。
� 例子:
�
$ git clone https://github.com/username/repository.git
Cloning into 'repository'...
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 27 (delta 6), reused 27 (delta 6), pack-reused 0
Unpacking objects: 100% (27/27), done.
�
�
3. 添加文件到暂存区
git add [file]
� 功能:将文件添加到暂存区。
� 参数:
o .:添加当前目录下的所有文件。
� 例子:
�
$ git add file.txt
�
�
4. 提交更改
git commit -m "commit message"
� 功能:将暂存区的文件提交到仓库。
� 参数:
o -a:自动将所有已跟踪的文件添加到暂存区。
o -m:添加提交信息。
� 例子:
�
$ git commit -m "Add new feature"
[master 1234567] Add new feature
1 file changed, 1 insertion(+)
�
�
5. 查看状态
git status
� 功能:显示工作区和暂存区的状态。
� 例子:
�
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working
directory)
modified: file.txt
no changes added to commit (use "git add" and/or "git commit -a")
�
�
6. 查看提交历史
git log
剩余10页未读,继续阅读
资源评论
licy__
- 粉丝: 278
- 资源: 123
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Python编程源代码(办公自动化)+Python、PyQt5、pandas、Excel+不打开表格查找、修改Excel指定内容
- java郑的个人学习经验资料源码的.zip
- 人工智能个人备份的学习资料.zip
- Python 归并排序算法
- 免费谷歌浏览器chrome chromedriver 126.0.6478.127 win64 下载
- Windows Server 2008R2下可运行的Chrome与ChromeDriver.zip
- 计算机组成原理作业基于Cpp的可视化Mips汇编器与反汇编器源码+实验报告
- 达梦数据库驱动,mysql驱动,opengauss驱动,oracle驱动
- 期末大作业-Qt和C++酒店管理系统源码.zip
- 暴风电视刷机数据 65R5 屏V650DJ4-QS5 机编60000AM0T00 屏参30173306 V1.0.42版本
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功