Git安装

Posted HY韩羽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git安装相关的知识,希望对你有一定的参考价值。

系统:Ubuntu  

1,安装

查看是否安装            git

安装                           sudo apt-get install git

2,创建仓库

创建目录git               mkdir  git 

进入目录     cd git/

创建仓库               git init

3,添加

创建文件                      touch  firstgit.txt

添加到暂存区               git add firstgit.txt

提交到当前分支            git  commit –m “XXXXXXXX”             

(“XXXXXXXX”为提交描述)

 

遇到问题

*** Please tell me who you are.
Run

  git config --global user.email "[email protected]"

  git config --global user.name "Your Name"

to set your account‘s default identity.

Omit --global to set the identity only in this repository

运行

git config --global user.email "[email protected]"

git config --global user.name "Your Name"

 

4,查看结果 git status 

 

ok了

 

以上是关于Git安装的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程

VIM 代码片段插件 ultisnips 使用教程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段