摘要:
https://baike.baidu.com/item/CodeMeter/482271?fr=aladdin 阅读全文
摘要:
自己做实验: 在gitee上建一个repo1: https://gitee.com/firstsnowflakes/testGit1 , 其会将另一个repo2: https://gitee.com/firstsnowflakes/testGit2 作为一个submodule来应用。 1) 将rep 阅读全文
摘要:
刚刚提交了三个commit, git reflog显示如下: 最后一个commit在文件末尾加了一行:v3,以此类推: 下面,使用git reset --hard commitID来进行commit回退:(应该回滚的时工作区的commit版本吧) 1)回到最后一个commit之前,即回到v2后的版本 阅读全文
摘要:
1、添加某个文件类型到暂存区,比如所有的 .html 文件。 git add *.html 2、添加某个文件或者某个文件夹中的某个文件到暂存区 ,比如 index 下的 index.html 文件。 注意:不加参数默认为将修改的文件 和 未跟踪新添加的文件 添加到git系统的暂存区,不包括删除。 ( 阅读全文
摘要:
git clean用法:https://www.cnblogs.com/lsgxeva/p/8540476.html : 阅读全文
摘要:
https://book.douban.com/subject/5489586/ https://book.douban.com/subject/2584523/ https://book.douban.com/subject/2228896/ https://book.douban.com/sub 阅读全文
摘要:
四元数的概念 & 如何使用四元数: 绕V轴旋转 f 角,对应的四元数: q = ( cos(f/2), Vx*sin(f/2), Vy*sin(f/2), Vz*sin(f/2) ) = cos(f/2) + Vx*sin(f/2)*i + Vy*sin(f/2)*j + Vz*sin(f/2)*k 阅读全文
摘要:
https://www.ghisler.com/ http://www.guyiren.com/archives/1647 阅读全文