克隆项目

git clone https://github.com/swordyang/shadowsocks.git
cd shadowsocks

显示当前所有分支

git branch -a


创建分支

git branch origin/fly3w


切换到指定分支

git checkout origin/fly3w


查看当前heads的引用

ls -F .git/refs/heads/origin
cat .git/refs/heads/origin/fly3w

修改并提交

push分支,会push到本地,不会到远程

git push

push分支到远程,git push origin local_branch:remote_branch

git push origin origin/fly3w:remotes/origin/fly3w

typescript 源码分析

https://www.cnblogs.com/xuld/p/12180913.html

阅读全文

flutter_gen config

const configDefaultYamlContent = ''' name: UNKNOWN flutter_gen: Optional output: lib/gen/ Optional line_length: 80 Optional parse_metadata: false ...

阅读全文

redis 函数的含义

您提供的函数列表是一个 Redis 客户端 API 的部分实现,通常用于与 Redis 数据库进行交互。以下是这些函数的简要解释,按类别进行分类以帮助理解其功能和用...

阅读全文

欢迎留言