Git and Github

Introduction

Git是Linus开发的分布式版本控制工具,而Github是在线代码托管平台

Feeling

我常常觉得git/github对我来说只有git add git commit git push三部曲,别人的git版本控制是有向无环图(DAG), 而我的git是链表😆。但是学会完整的git/github工作流是必要的。

常用配置

设置代理

  • git config --global --get http.proxy 查看http代理服务器

  • git config --global --get https.proxy 查看https代理服务器

  • git config --global http.proxy 127.0.0.1:7890 设置http代理服务器

  • git config --global https.proxy 127.0.0.1:7890 设置https代理服务器

  • 如果代理服务器支持socks5,设置socks5代理

pull request

  • fork a Repository

  • git clone <your fork>

  • push as usual

  • contribute -> pull request

作者

huayi

发布于

2023-03-27

更新于

2023-11-04

许可协议