随笔分类 -  git

Git是一款免费、开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目。
git的一些常用操作
摘要:一、克隆默认分支 git clone 远程地址 二、克隆某一分支 git clone -b 分支名 远程地址 三、切换分支 git branch 分支名 四、一般开发提交的流程 1)、查看本地状态 git status 2)、添加到本地 git add . (这是添加所有的做法) git add 具 阅读全文
posted @ 2017-04-11 12:03 小老虎网络 阅读(203) 评论(0) 推荐(0)
解决安装xcode后git使用报错的问题
摘要:一、现象: htmlxdeMacBook-Pro:demo htmlx$ git status Agreeing to the Xcode/iOS license requires admin privileges, please run “sudo xcodebuild -license” and 阅读全文
posted @ 2017-04-11 11:26 小老虎网络 阅读(10852) 评论(0) 推荐(0)