Git has been getting a lot of buzz lately, and for good reason. It's an excellent SCM which in many ways is more simple and powerful than subversion. See how to set up a Rails project with Git in this episode.
# commands
git init
git status
git add .
git commit -a
touch tmp/.gitignore log/.gitignore vendor/.gitignore
# .gitignore
.DS_Store
log/*.log
tmp/**/*
config/database.yml
db/*.sqlite3
本文介绍如何使用Git设置Rails项目。Git作为一款优秀的源代码管理系统(SCM),相比Subversion在简易性和功能上都有显著提升。通过示例命令如git init、git status等,文章详细展示了配置过程。

被折叠的 条评论
为什么被折叠?



