2019-12-17 wsl - git设置代理加速github拉去项目及git标签的使用

wsl - git设置代理加速github拉去项目

1、使用命令

# http代理:
git config --global https.proxy http://127.0.0.1:10800 # 具体端口看代理软件的端口
git config --global https.proxy https://127.0.0.1:10800
# socks5代理:
git config --global http.proxy 'socks5://127.0.0.1:10800'
git config --global https.proxy 'socks5://127.0.0.1:10800'

2、编辑文件

# 在文件~/.gitconfig添加:
[http]
proxy = socks5://127.0.0.1:10800
[https]
proxy = socks5://127.0.0.1:10800
  1. 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

git 标签的使用

  1. git branch -a 所有分支
  2. git tag 所有标签
  3. git tag -a v0.0.1 -m '给当前commit 打标签'
  4. git tag -a v0.0.1 abcde(commit head)
  5. git show 可以看到说明文字
  6. git push origin --tags 推送所有本地标签
  7. git push origin v0.0.1 推送指定标签
  8. git checkout v0.0.1 跳转指定标签
  9. git tag -d v0.0.1 删除指定标签
  10. git push origin -d tag 删除远程分支的标签

你可能感兴趣的:(2019-12-17 wsl - git设置代理加速github拉去项目及git标签的使用)