git初始化配置
程序员文章站
2022-05-26 22:01:39
...
1、初始配置,global表示全局配置
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
2、git创建版本库
git init
$ mkdir learngit
$ cd learngit
$ pwd
/Users/michael/learngit
$ git init
Initialized empty Git repository in /Users/michael/learngit/.git/
3、将文件添加到版本库
git add readme.txt
4、提交修改至版本库,-m表示提交注释
git commit -m "git使用练习"
上一篇: (日历)Calendar
下一篇: QT仪表盘
推荐阅读
-
出现Git clone The requested URL returned error: 403 错误的解决办法
-
Jenkins + Docker + dockerfile-maven-plugin + Harbor CI/CD spring-boot项目的最轻量级配置
-
MAC自带Apache配置python3
-
【架构篇】ASP.NET Core 基于 Consul 动态配置热更新
-
Spring-Boot使用嵌入式容器,那怎么配置自定义Filter呢
-
IIS7.5开启FastCGI的配置方法
-
阿里云Linux系统Nginx配置多个域名的方法详解
-
spring cloud 初步搭建1-1(eureka配置)
-
万元i7-6700/GTX1080 VR主机电脑配置清单推荐
-
thinkphp的URL路由规则与配置实例