Git 初次使用配置用户信息 git config --global user.name "malu" git config --global user.email "malu@malu.me" git config --global alias.l 'log --pretty=format:"%h %ad [%an] %s%d" --date=format:"%Y-%m-%d %H:%M" --no-merges -30' git confi... 2021-12-24 Linux教程 0 张图
常用 Git 命令清单 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓... 2021-12-05 Linux教程 1 张图
git 设置代理及取消 git代理设置方法解决 如果执行:git config --global https.proxy http://127.0.0.1:1080 时出现:fatal: not in a git directory 请先执行:git init 2.设置代理: git config --global https.proxy http://127.0.0.1:1080 git config --gl... 2021-11-24 Linux教程 0 张图
提高Github Clone速度 简介 Github作为全球最大的同性交友网站,一直广受开发者们的喜爱,但是由于某些不可描述的原因,在访问、克隆、拉取、推送的时候,经常莫名其妙的不好使,速度慢的让人无法忍受。解决这个问题(克隆、拉取、推送)的一个途径就是通过代理,绕过 某长城 ... 2020-01-12 Linux教程 Mac 2 张图