赞
踩
克隆远程版本库——git clone 是 Git 中用于从远程仓库中复制项目的命令。这个命令会在当前目录下创建一个新的目录,其名字默认是远程仓库的名字,并且会从远程仓库下载所有的数据,同时也会把远程仓库的所有分支和标签都拉取到本地。
git clone <repository>
其中 <repository>
是远程仓库的 URL。
示例:
git clone https://github.com/user/repo.git
如果你想要克隆到指定的目录,可以在命令后面加上目录名:
git clone <repository> <directory>
示例:
git clone https://github.com/user/repo.git my-repo
如果你想要克隆特定的分支,可以使用 -b 选项指定分支名:
git clone -b <branch> <repository>
示例:
git clone -b develop https://github.com/user/repo.git
如果你想要限制克隆的深度,可以使用 --depth 选项:
git clone --depth <depth> <repository>
示例:
git clone --depth 1 https://github.com/user/repo.git
初始化本地版本库——git init 是一个Git命令,它用于创建一个新的Git仓库。当你在一个目录中运行这个命令时,Git会在该目录下创建一个新的子目录.git,这个子目录包含所有必需的Git仓库文件,并将该目录初始化为一个Git仓库。
以下是使用 git init 命令的一些常见场景:
如果你想创建一个新的Git仓库,你可以在命令行中进入到你想要放置这个仓库的目录,然后运行 git init。
示例:
mkdir myproject
cd myproject
git init
这将在 myproject 目录中创建一个新的Git仓库。
如果你已经克隆了一个仓库,但还没有进行任何更改,你可以使用 git init 命令来重新初始化这个已存在的Git仓库。
示例:
cd existing_repo
git init
这将重新初始化 existing_repo 目录中的Git仓库。
子模块是指在你的仓库中嵌入另一个仓库的方式。当你将子模块添加到你的仓库中时,你需要在子模块目录中运行 git init 来初始化这个子模块为一个Git仓库。
示例:
git submodule add https://github.com/example/submodule-repo.git path/to/submodule
cd path/to/submodule
git init
这将在 path/to/submodule 目录中创建一个新的Git子模块仓库。
注意:在大多数情况下,你不需要手动运行 git init,因为 git clone 命令会自动初始化新的仓库。只有在特定情况下,如需重新初始化现有仓库,或者创建子模块仓库时,才会手动运行 git init 命令。
关于《Git常用命令》详细讲解这篇文章,老吕也没想到,随手写啊写啊,Git命令详细的写一写还真的写了好多内容,直接发布后,发现手机看这文章的时候,居然卡屏了,所以无奈只能把这篇文章的内容分拆成10篇发布出来,以下是全文各篇章的链接:
1. 《Git常用命令》详细讲解·第1篇(git clone和git init)
https://pythonlaolv.blog.csdn.net/article/details/137091558
2. 《Git常用命令》详细讲解·第2篇(git status和git diff)
https://pythonlaolv.blog.csdn.net/article/details/137095087
3. 《Git常用命令》详细讲解·第3篇(git add、git mv和git rm)
https://pythonlaolv.blog.csdn.net/article/details/137095175
4. 《Git常用命令》详细讲解·第4篇(git commit -m “commit message“和git commit --amend)
https://pythonlaolv.blog.csdn.net/article/details/137095289
5. 《Git常用命令》详细讲解·第5篇(git log和git blame)
https://pythonlaolv.blog.csdn.net/article/details/137095352
6. 《Git常用命令》详细讲解·第6篇(git reset --hard HEAD、git checkout HEAD和git revert <commit>)
https://pythonlaolv.blog.csdn.net/article/details/137095501
7. 《Git常用命令》详细讲解·第7篇(git branch、git checkout <branch/tag>和git tag)
https://pythonlaolv.blog.csdn.net/article/details/137095635
8. 《Git常用命令》详细讲解·第8篇(git merge和git rebase)
https://pythonlaolv.blog.csdn.net/article/details/137095700
9. 《Git常用命令》详细讲解·第9篇(git remote -v、git remote show和git remote add)
https://pythonlaolv.blog.csdn.net/article/details/137095791
10. 《Git常用命令》详细讲解·第10篇(git fetch、git pull和git push)
https://pythonlaolv.blog.csdn.net/article/details/137111309
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。