git命令备忘

git 命令备忘

1. 自定义输入用户密码clone项目:
	git clone https://user:pwd@xxxxxx.git

git回退

  1. 先获取要回退的版本号,eg:aaa
    git reset --hard aaa
    hard的方式会丢弃本地做出的所有修改和服务器保持一致,并将head指针指向回退的版本号;
  2. 此时可以有两种操作:
    a. 直接暴力提交:git push -f orgin
    这种提交方式回退部分的日志记录会消失;


    b. 重置head指针到回退前的版本号, eg: bbb
    git reset --mixed bbb
    mixed这种方式不会放弃本地修改,将head指针指向指定版本号;
    然后直接push即可: git push orgin
    这种方式会保持回退的提交记录,更利于版本变迁的管理;

git commit指定时间

git commit --amend --date="Sun, 25 Dec 2016 19:42:09 +0800"

时间简写:

星期:

7123456
SunMonTueWedThuFriSat

月份:

123456789101112
JanFebMarAprMayJunJulAugSepOctNovDec

git中同时向多个远程仓库推送

  1. 新增一个本地仓库;
  2. 定义一个远程仓库a;
  3. 进入仓库的.git文件夹中, 打开 config 文件;修改如下:
<!-- 该文件已是完成修改的版本,在remote下新增url即可,这样不配置多个远程仓库的好处是:
仅一次提交就可以同时维护多个仓库的代码,使之保持一致 -->
[core]
	repositoryformatversion = 0
	filemode = false
	bare = false
	logallrefupdates = true
	symlinks = false
	ignorecase = true
[branch "master"]
	remote = orgin
	merge = refs/heads/master
[remote "orgin"]
	url = https://github.com/xxx/aaa.git
	url = https://gitee.com/xxx/aaa.git
	fetch = +refs/heads/*:refs/remotes/orgin/*

git 常见问题汇总

  1. 克隆项目提示如下:SSL certificate problem: self signed certificate in certificate chain
Administrator@liag MINGW64 /d/code
$  git clone https://user:pwd@xxxxxx.git
Cloning into '9x40'...
fatal: unable to access 'https://xxxxxx.git': 
SSL certificate problem: self signed certificate in certificate chain

解决方法:执行git config --global http.sslVerify false 关闭SSL认证;

github加速

  1. 打开:https://www.ipaddress.com/
  2. 查询下面地址的dns:
    	github.com
    	assets-cdn.github.com
    	github.global.ssl.fastly.net
    
  3. 将dns的ip写入系统Hosts文件: C:\Windows\System32\drivers\etc\host
  4. 管理员命令行执行DNS解析: ipconfig /flushdns

git 代理

设置代理:
git config --global http.proxy 'socks5://127.0.0.1:1080' 
git config --global https.proxy 'socks5://127.0.0.1:1080'

查看代理:
git config --global --get http.proxy
git config --global --get https.proxy

取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值