上传文件:
git add . //添加到静态库
git commit -m "xxxxxx" //加修改注释
git push //推到远程仓库
查看所有版本:
git reflog
返回上个版本:
git reset --hard 478ff3e
创建分支
git branch //查看分支
git branch xx //创建分支
git checkout xx //切换分支
git merge xx
git branch -d name //删除分支
创建podfile (终端 文件夹下 touch podfile)
pod update
网友评论