
Git
果粉叔叔
IOS程序员
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git 执行更改
git commit -m 'commit message'原创 2017-05-22 16:03:09 · 230 阅读 · 0 评论 -
Git 提交远程仓库
gi 提交远程仓库 git push -u origin master 简化后,可使用 git push git 从远程仓库更新 git pull git fetch 若仓库很大,可以分层次逐渐的获取该仓库。原创 2017-05-25 11:27:16 · 245 阅读 · 0 评论 -
Git 恢复操作
git 修正错误,恢复操作 git reset --hard原创 2017-05-24 09:20:11 · 372 阅读 · 0 评论 -
Git .gitignore
我们看一个 .gitignore 文件的例子: # no .a files *.a # but do track lib.a, even though you're ignoring .a files above !lib.a # only ignore the TODO file in the current directory, not subdir/TODO /TODO # igno转载 2017-05-25 10:14:17 · 312 阅读 · 0 评论