Git使用指南(3)—— 使用Git命令
2017-01-06 09:27 bongxin 阅读(116) 评论(0) 编辑 收藏 举报暂存区替换掉工作区
git init
git init newrepo
克隆仓库
git clone
git clone <repo>
git clone <repo> <direction>
查看目录
ls -a
查看当前项目状态
git status -s
查看文件改动详细信息
git diff
提交时添加注释
git commit -m <msg>
一步提交到版本库
git commit -a