Git 基本操作和初始化和clone仓库
目录
了解git的一些基本操作
- 查看用户信息
$ git config --list
- 查阅某个命令的帮助
$ git help 命令
如果不需要那么详细的解释,只需要可用选项的快速参考,那么就只需要
$ git 命令 -h
比如
$ git add -h
usage: git add [<options>] [--] <pathspec>...
-n, --dry-run dry run
-v, --verbose be verbose
-i, --interactive interactive picking
-p, --patch select hunks interactively
-e, --edit edit current diff and apply
-f, --force allow adding otherwise ignored files
-u, --update update tracked files
--renormalize renormalize EOL of tracked files (implies -u)
-N, --intent-to-add record only the fact that the path will be added later
-A, --all add changes from all tracked and untracked files
--ignore-removal ignore paths removed in the working tree (same as --no-all)
--refresh don't add, only refresh the index
--ignore-errors just skip files which cannot be added because of errors
--ignore-missing check if - even missing - files are ignored in dry run
--chmod (+|-)x override the executable bit of the listed files
获取 Git 仓库
通常有两种获取 Git 项目仓库的方式:
将尚未进行版本控制的本地目录转换为 Git 仓库;
从其它服务器 克隆 一个已存在的 Git 仓库。
两种方式都会在你的本地机器上得到一个工作就绪的 Git 仓库。
1. 在已存在目录中初始化仓库
windows上,打开cmd命令行,cd切换到project的目录下:
$ cd /c/user/my_project
之后执行:
$ git init
就可以得到一个转换为Git仓库的文件夹。设置隐藏文件夹可见,你可以看到文件夹下面多了一个.git的隐藏文件夹。 该命令将创建一个名为 .git 的子目录,这个子目录含有你初始化的 Git 仓库中所有的必须文件,这些文件是 Git 仓库的骨干。 但是,在这个时候,我们仅仅是做了一个初始化的操作,你的项目里的文件还没有被跟踪。
2. 克隆现有的仓库
这个的意思是,如果你想把GitHub上面的一个项目克隆下来(就是下载到你的电脑上),可以通过clone的方式。 克隆仓库的命令是 git clone
$ git clone https://github.com/libgit2/libgit2
这会在当前目录下创建一个名为 “libgit2” 的目录,并在这个目录下初始化一个 .git 文件夹, 从远程仓库拉取下所有数据放入 .git 文件夹,然后从中读取最新版本的文件的拷贝。 如果你进入到这个新建的 libgit2 文件夹,你会发现所有的项目文件已经在里面了,准备就绪等待后续的开发和使用。
如果你想在克隆远程仓库的时候,自定义本地仓库的名字,你可以通过额外的参数指定新的目录名:
$ git clone https://github.com/libgit2/libgit2 mylibgit
这会执行与上一条命令相同的操作,但目标目录名变为了 mylibgit。
Git 支持多种数据传输协议。 上面的例子使用的是 https:// 协议,不过你也可以使用 git:// 协议或者使用 SSH 传输协议,比如 user@server:path/to/repo.git 。(意思是你可以使用其他的方式连接到仓库中)
文档信息
- 本文作者:Kilin
- 本文链接:https://star-twinking.github.io/2021/08/09/Git-%E5%AD%A6%E4%B9%A0%E8%AE%B0%E5%BD%951/
- 版权声明:自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)