123456789101112131415161718192021222324
//在当前目录新建一个Git代码库git init// 添加改动文件到暂存区git add .//停止追踪指定文件,但该文件会保留在工作区(如果添加ignorance文件无效的话)git rm --cached [file] //提交暂存区到仓库区git commit -m [message]// 恢复暂存区的所有文件到工作区git checkout .// 暂时将未提交的变化移除,稍后再移入git stashgit stash pop//添加远程仓库git remote add origin git://github.com/paulboone/ticgit.git//添加.gitignore文件,忽略node_modulesnode_modules/