摘要:
阅读全文
摘要:
https://www.jb51.net/article/127941.htm 方法一 通过命令直接修改远程地址 进入git_test根目录 git remote 查看所有远程仓库, git remote xxx 查看指定远程仓库地址 git remote set-url origin http:/ 阅读全文
摘要:
https://www.cnblogs.com/duanxz/p/3653087.html https://www.cnblogs.com/pangjianxin/p/7877868.html https://blog.csdn.net/konglongdanfo1/article/details/ 阅读全文
摘要:
VariantEvent.h#pragma once #include <functional> #include <map> #include <mutex> #include <future> template<typename... Arguments_> class SVPVariantEvent { public: typedef std::function<void(const Arg 阅读全文
摘要:
https://blog.csdn.net/dh314552189/article/details/87879016 阅读全文
摘要:
https://www.jianshu.com/p/2bb0b6a7b479 https://www.jianshu.com/p/d175bef9770c Unable to resolve dependency for ':app@debug/compileClasspath': Could no 阅读全文
摘要:
用tr需要新增变量,用declare或typeset需要在变量赋值前或者赋值后单独声明,都有些麻烦 此方法为bash 4.0以后新增,bash 4.0 2009年发布 $ test="abcDEF" # 把变量中的第一个字符换成大写 $ echo ${test^}AbcDEF # 把变量中的所有小写 阅读全文
摘要:
https://www.cnblogs.com/sos-blue/p/6852945.html 阅读全文
摘要:
你可以直接在Make的时候,在命令行下面传入一个参数或者变量,它会覆盖掉Makefile里面的变量或者参数。比如,在你的Makefile里面定义了一个变量age. 你make的时候,打印信息是age=12 当你使用make AGE=20时,打印的信息就是:age=20,AGE作为参数传入,然后会覆盖 阅读全文