IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> 【三】Git创建仓库 -> 正文阅读

[开发工具]【三】Git创建仓库

目录

1.git init

2.git clone

3.设置

4.git的查增删改指令


1.git init

Git 使用?git init?命令来初始化一个 Git 仓库,Git 的很多命令都需要在 Git 的仓库中运行,所以?git init?是使用 Git 的第一个命令。

在执行完成?git init?命令后,Git 仓库会生成一个 .git 目录,该目录包含了资源的所有元数据,其他的项目目录保持不变。

git init newrepo//使用指定目录newrepo作为存放地

若当前目录内有其他内容需要合并进.git仓库中,使用代码:

$ git add *.c
$ git add README
$ git commit -m '初始化项目版本

将 .c 结尾及 README 文件提交到仓库中

2.git clone

从已有的git仓库中copy项目:

git clone <repo>//repo为git仓库
//以下等价于以上
git clone http://github.com/CosmosHua/locate new
git clone http://github.com/CosmosHua/locate.git new
git clone git://github.com/CosmosHua/locate new
git clone git://github.com/CosmosHua/locate.git new
//还可使用不同协议
git clone git@github.com:fsliurujie/test.git         --SSH协议【最快、常用】
git clone git://github.com/fsliurujie/test.git          --GIT协议
git clone https://github.com/fsliurujie/test.git      --HTTPS协议

copy到指定目录:

git clone <repo> <directory>//directory为本地目录

3.设置

显示当前git配置

$ git config --list
credential.helper=osxkeychain
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true

编辑git的配置文件

$ git config -e//针对当前仓库
$ git config -e --global//针对系统上所有仓库

PS:推出编辑模式回到命令行的几种方法

1.保存并退出:

(1)按 Esc 键退出编辑模式,英文模式下输入 :wq ,然后回车(write and quit)。

(2)按 Esc 键退出编辑模式,大写英文模式下输入 ZZ?,然后回车。

2.不保存退出:
  按 Esc 键退出编辑模式,英文模式下输入 :q! ,然后回车。

  按 Esc 键退出编辑模式,英文模式下输入 :qa! ,然后回车。

设置提交代码时的用户信息

$ git config --global user.name "runoob"
$ git config --global user.email test@runoob.com

4.git的查增删改指令

//查
git config --global --list

git config --global user.name
git config --global user.email

//增
git config  --global --add user.name xxx
git config  --global --add user.email xxx

//删
git config  --global --unset user.name xxx
git config  --global --unset user.email xxx

//改
git config --global user.name xxx
git config --global user.email xxx
  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2022-10-22 21:35:05  更:2022-10-22 21:37:17 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 20:26:18-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码