Git的使用介绍
Qt的绝大多数项目都是通过Git进行分布式版本控制管理的。2009年5月11日起,诺基亚Qt Software 宣布 Qt源代码库面向公众开放,Qt 开发人员可通过为 Qt 以及与 Qt 相关的项目贡献代码、翻译、示例以及其他内容,协助引导和塑造 Qt未来的发展。为了便于这些内容的管理,Qt Software 启用了基于 Git 和 Gitorious 开源项目的Web 源代码管理系统
首先,需要下载、安装Git,请参考该链接 Git
其次,要peizhi
git config --global user.name "chang sheng" git config --global user.email "changsheng230@gmail.com"
在刚开始 local repository to Gitorious
git checkout master git remote add origin git@gitorious.org:helloworldqt/learngit_david.git git push origin master
一本介绍Git非常好的电子书:Git Community Book