gitbash的一些命令和配置

查看git版本号:

git --version

如果是第一次使用Git,你需要设置署名和邮箱:

$ git config --global user.name "用户名"

$ git config --global user.email "电子邮箱"

检查你的设置

$ git config --list

或单独检查一项:

$ git config user.name

「扩展」配置文件

配置文件在当前主文件夹下的.gitconfig文件

git config --global alias.st status

git config --global alias.ci commit

git config --global alias.co checkout

git config --global alias.br branch

cat ~/.gitconfig

将代码仓库clone到本地:

$ git clone -o github https://github.com/XXXXXXXX(仓库的地址)

选择你的编辑器(使用notepad++举例):

在window系统上,执行以下操作:

$ git config --global core.editor "‘C:/Program Files (x86)/Notepad++/notepad++.exe‘ -multiInst -nosession"

在x86系统上:

$ git config --global core.editor "‘C:/Program Files/Notepad++/notepad++.exe‘ -multiInst -nosession"

时间: 2024-10-24 20:28:20

gitbash的一些命令和配置的相关文章

linux的常用命令和配置

1.tar.gz包解压 [[email protected] crawler]# ls com.ericsson.cdm.crawler-0.0.1-SNAPSHOT-dist.tar.gz [[email protected] crawler]# tar zxvf com.ericsson.cdm.crawler-0.0.1-SNAPSHOT-dist.tar.gz com.ericsson.cdm.crawler-0.0.1-SNAPSHOT/lib/log4j-1.2.14.jar ...

MongoDB使用命令行配置的问题

在用命令行配置mongodb的时候遇到一些问题,自己脑子也是有点发昏 一开始以为是自己环境配置错或命令敲错了 后来才发现,配置路径不支持相对的路径,必须写全比如D:\mongodb\db\ huo ./mongodb/db/ 希望以后不要再犯同样的错误了,开发者也应该多考虑一下安装时这些小细节 像这种小问题,最好给个比较明确的提示

从命令行配置 Windows 防火墙

从命令行配置 Windows 防火墙 高级用户可以使用命令行来配置 Windows 防火墙.您可以使用 netsh 命令行工具来进行配置. 下表中的 netsh 命令可用于 Microsoft Windows XP Service Pack 2 (SP2).键入 netsh 命令以及“/?”会显示该命令的帮助. Add netsh firewall add allowedprogram 将允许的程序配置添加到 Windows 防火墙中 netsh firewall add portopening

菜鸟入门【ASP.NET Core】5:命令行配置、Json文件配置、Bind读取配置到C#实例、在Core Mvc中使用Options

命令行配置 我们通过vs2017创建一个控制台项目CommandLineSample 可以看到现在项目以来的是dotnet core framework 我们需要吧asp.net core引用进来,我们可以直接添加Microsoft.AspNetCore.All 安装完成之后,我们可以通过using Microsoft.Extensions.Configuration;来进行后续的配置 static void Main(string[] args) { var builder = new Con

命令行配置Windows高级防火墙

今天正好看到个帖子,询问如何通过命令行配置防火墙策略中远程IP的地址,特别是添加新的地址.就是图中Scope里Remote IP address的地址. 第一反应就是用netsh firewall来配置试试.输入命令后,发现Windows提示最好使用powershell配置,以后的系统中不再提供这种方式配置了.看来微软是逐步把所有的配置命令都转向Powershell了.如果看不到图片,请点我. 所以就要转向powershell命令了. New-NetFirewallRule -DisplayNa

nginx实战操作(常用命令及配置)

1. nginx介绍 2. nginx常用命令 验证配置是否正确: nginx -t 查看Nginx的详细的版本号:nginx -V 查看Nginx的简洁版本号:nginx -v 启动Nginx:start nginx 快速停止或关闭Nginx:nginx -s stop 正常停止或关闭Nginx:nginx -s quit 配置文件修改重装载命令:nginx -s reload 3. nginx配置 3.1 配置代码 #user nobody; worker_processes 1; even

配置私有CA命令与配置证书(根据马哥的linux视频教程总结出来)

一:配置私用CA命令 1.编辑配置文件/etc/pki/tls/openssl.cnf 更改dir 将"../../CA"改为"/etc/pki/CA" 可以更改默认国家.省份.城市 mkdir certs  newcerts   crl touch index.txt touch serial echo 01 >serial 2.创建私有秘钥(公钥从此生成) 在/etc/pki/CA目录下 (umask 077;openssl genrsa 2048 >

maven 常用命令和配置

一.maven配置 1.1镜像配置:在文件settings.xml中配置 <mirror> <id>repo2</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo2.maven.org/maven2/</url> </mirror> 其他国

Maven 插件 maven-tomcat7-plugin - 常用命令及配置

常用命令 tomcat7:deploy 说明:部署 WAR 到 Tomcat tomcat7:help 说明:查看插件帮助信息 tomcat7:run 说明:支行当前项目 配置 <project> ... <build> <!-- To define the plugin version in your parent POM --> <pluginManagement> <plugins> <plugin> <groupId&g