git使用说明

本文介绍了如何设置Git的http和https缓存大小,代理设置以及查看和修改Git配置。同时,讲解了Git的分支操作,包括列出本地和远程分支、创建、切换、合并及删除分支。对于日常开发工作,这些Git基础操作至关重要。
摘要由CSDN通过智能技术生成

设置缓存大小

设置http缓存为1000M(大小可以根据需要自行更改)

git config --global http.postBuffer 1048576000 

设置https缓存为1000M

git config --global https.postBuffer 1048576000

设置代理

设置代理:

git config --global https.proxy http://127.0.0.1:30800
git config --global https.proxy https://127.0.0.1:30800

上面端口改成自己的。

取消代理:

git config --global --unset http.proxy
git config --global --unset https.proxy

查看git配置

git config -l

查看git全局配置

git config --global --list

查看git系统设置

git config --system --list

设置全局用户名和邮箱

git config --global user.name "name"
git config --global user.email "github@xx.com"
git config --list

设置当前工程的用户名和邮箱

git config user.name "name"
git config user.email "github@xx.com"

设置和取消代理:

git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy

git分支

有道无术,术尚可求。有术无道,止于术。

# 列出所有本地分支
git branch

# 列出所有远程分支
git branch -r 

# 新建一个分支
git branch dev

# 切换分支
git checkout -b dev

# 合并指定分支道当前分支
git merge dev

# 删除分支
git branch -d dev

# 删除远程分支
git push origin --delete dev
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值