git tips

1、设置代理:

git config --global http.proxy http://192.168.123.1:8087
git config --global https.proxy http://192.168.123.1:8087
git config --global http.sslverify false

1.1、xx-net 共享代理到局域网,可以生成 data/gae_proxy/manual.ini 在里面放对应的配置

例如:将监听IP改为 0.0.0.0,则在manual.ini中写下(xx-net版本3.3):

[listen]   
ip = 0.0.0.0   
port = 8087

注意不要搞错目录, walker 在 code\default\gae_proxy 目录下折腾了半天。用这种方法可以让虚拟机共享物理主机的 xx-net 代理,虚拟机里面的 git 也可以用这个代理,注意物理机的防火墙设置。

*** walker ***

时间: 2024-10-10 00:51:05

git tips的相关文章

常用的数十个 Git Tips

Configuration:配置 列举所有的别名与配置 git config --list Git 别名配置 git config --global alias.<handle> <command> git config --global alias.st status 设置git为大小写敏感 git config --global core.ignorecase false User Help:常用的辅助查询命令 在git 命令行里查看everyday git git help

常用的Git Tips

导读 Git被越来越多的公司使用,因此我们需要了解Git使用过程中的一些技巧. 一.Configuration:配置 列举所有的别名与配置 git config --list Git 别名配置 git config --global alias. git config --global alias.st status 设置git为大小写敏感 git config --global core.ignorecase false 二.Help:常用的辅助查询命令 在git 命令行里查看everyday

git tips 积累

统计项目中所有人的代码提交次数并排序: git shortlog -s -n 统计某人的代码量 git log --author="_Your_Name_Here_" --pretty=tformat: --numstat \ | gawk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s removed lines: %s total lines: %s\n", add

Git凭证存储

今天给自己提了一个问题,当我们在github.com或者gitlab上面新建仓库,并克隆到本地,首次使用的时候,会被问及用户名密码,但是这两个信息存在哪里呢? 带着这个问题,我开始搜索,并在<Pro Git>7.14 Git-工具-凭证存储中读到了完整的解答,但是当我第一次阅读的时候,并没有太清楚它所要表达的意思,于是我不断尝试后,总算是有所明白. 本文就作为一个解读贴,作为补充. 凭证存储究竟要解决什么问题? 众所周知,我们通常用SSH和HTTP协议来访问远程仓库. SSH协议并不采用这里讨

Git 少用 Pull 多用 Fetch 和 Merge(转)

英文原文:git: fetch and merge, don’t pull This is too long and rambling, but to steal a joke from Mark Twain Blaise Pascal I haven’t had time to make it shorter yet.  There is some discussion of this post on the git mailing list, but much of it is tangen

Git 少用 Pull 多用 Fetch 和 Merge(转)

This is too long and rambling, but to steal a joke from Mark Twain Blaise Pascal I haven’t had time to make it shorter yet.  There is some discussion of this post on the git mailing list, but much of it is tangential to the points I’m trying to make

写给Git初学者的7个建议

英文原文:7 Useful Git Tips for Beginners 当我刚刚开始使用 Git 的版本控制时,我根本不确定我付出那么多时间是不是会得到回报.Branch.Stage.Stash,这些 Git 名词对我来说都非常陌生. 而今天的我已不能想象生活没有 Git 会变成什么样.Git 不仅提供了我非常需要的版本控制功能,还让我变成一个更优秀的程序员. 这里有一系列可以帮助你的小贴士,可以让 Git 成为你开发工作中非常重要的一部分. 第一条:花时间去学习 Git 的基本操作 学习 G

[转]写给Git初学者的7个建议

本文转自:http://www.open-open.com/news/view/b7227e 阅读目录 第一条:花时间去学习 Git 的基本操作 第二条:从简单的 Git 工作流开始 第四条:理解分支概念 第五条:学习暂存区 英文原文:7 Useful Git Tips for Beginners 当我刚刚开始使用 Git 的版本控制时,我根本不确定我付出那么多时间是不是会得到回报.Branch.Stage.Stash,这些 Git 名词对我来说都非常陌生. 而今天的我已不能想象生活没有 Git

Undoing Merges

I would like to start writing more here about general Git tips, tricks and upcoming features. There has actually been a lot of cool stuff that has happened since the book was first published, and a number of interesting things that I didn't get aroun