值得推荐的开源C/C++框架和库
摘要:值得学习的C语言开源项目 - 1. Webbench Webbench是一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。Webbench使用C语言编写, 代码实在太简
阅读全文
posted @
2020-04-17 14:01
莫水千流
阅读(2130)
推荐(0) 编辑
修改branch name
摘要:# Rename branch locally git branch -m old_branch new_branch # Delete the old branch git push origin :old_branch # Push the new branch, set local branc
阅读全文
posted @
2020-04-01 16:47
莫水千流
阅读(784)
推荐(0) 编辑
git rebase
摘要:The Rebase command allows you to apply commits from one branch to another. Rebase can be viewed as more powerful version of Cherry-Pick, which is opti
阅读全文
posted @
2020-04-01 10:43
莫水千流
阅读(777)
推荐(0) 编辑
git merge
摘要:'Normal' Merge In case of a normal merge, a merge commit with at least two parent commits (i.e., the last from the current branch and the last from th
阅读全文
posted @
2020-04-01 10:42
莫水千流
阅读(1032)
推荐(0) 编辑