Loading

随笔分类 -  开发工具

摘要:`git svn clone http://???/svn/??? --authors-file=authors-transform.txt` ``` cat authors-transform.txt svn_username = git_username ``` 阅读全文
posted @ 2023-05-31 09:52 gamesun 阅读(34) 评论(0) 推荐(0)
摘要:CH340 https://github.com/juliagoda/CH341SER CP210x 因为源码版本不是linux-source-4.15.0-91-generic,导致error,一个临时办法是修改Makefile中的版本号,但是不确定有没有影响。 $ uname -r 4.15.0 阅读全文
posted @ 2020-04-10 09:03 gamesun 阅读(3281) 评论(0) 推荐(0)
摘要:最近更新了Eclipse 2019-12 CDT,工具栏的编译按钮太碍事了,关闭方法挺难找的,记录如下供参考: Menu "Window" -> Preferences -> Run/Debug -> Launching -> Launch Bar,取消所有钩选框。 阅读全文
posted @ 2020-01-06 22:23 gamesun 阅读(822) 评论(0) 推荐(0)
摘要:TortoiseGit兼容Windows XP和Windows Server 2003的最后版本: TortoiseGit 1.8.16.0 (https://download.tortoisegit.org/tgit/1.8.16.0/) Git for Windows支持Windows XP和W 阅读全文
posted @ 2019-01-12 10:45 gamesun 阅读(3737) 评论(0) 推荐(0)
摘要:Eclipse的Outline,Project Explorer,Call Hierarchy等小窗口是很方便的功能,但是遇到函数名或文件名很长的情况,就只能显示前半段。尽管Eclipse的自定义程度很高,但是却找不到这些窗口的字体设置。 经过一番摸索后,终于找到方法解决(我用的是Win7+Ecli 阅读全文
posted @ 2016-09-28 15:19 gamesun 阅读(2657) 评论(0) 推荐(0)
摘要:一般常见的text editor,在文本前面的空白处按下ctrl+delete,只是删除空白符到单词前面停下,但是Atom.io的默认设置,把空白符后遇到的第一个单词也删掉了。改配置方法是在keymap.cson加入下面代码。 '.platform-darwin atom-workspace ato 阅读全文
posted @ 2016-08-11 16:56 gamesun 阅读(510) 评论(0) 推荐(0)
摘要:转自http://git-scm.com/book/zh/Git-%E5%B7%A5%E5%85%B7-%E9%87%8D%E5%86%99%E5%8E%86%E5%8F%B2 重写历史 很多时候,在 Git 上工作的时候,你也许会由于某种原因想要修订你的提交历史。Git 的一个卓越之处就是它允许你 阅读全文
posted @ 2013-09-25 20:27 gamesun 阅读(376) 评论(0) 推荐(0)
摘要:Delete a remote Git tag $ git tag -d 12345 $ git push origin :refs/tags/12345 修改最近一次commit的message $ git commit --amend -m "New commit message" 修改comm 阅读全文
posted @ 2013-08-10 22:13 gamesun 阅读(389) 评论(0) 推荐(0)
摘要:Fix invalid "git config --global color.ui auto" when use msysgit in mintty. 解决在mintty中使用msysgit时,设置color.ui为auto无效的问题。 阅读全文
posted @ 2013-06-05 23:13 gamesun 阅读(423) 评论(0) 推荐(0)
摘要:GitHub中出现invalid-email-address时的修改方法。 阅读全文
posted @ 2013-04-22 22:57 gamesun 阅读(1263) 评论(0) 推荐(0)