git
文章平均质量分 72
tryyourbest0928
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git shell docker常用命令
# git # 下载 git clone --branch dev --single-branch --depth=1 git@gitlab.citydnatech.com:pinsurvey/pinsurvey_front.git # 更新 git pull --> git add file --> git commit -m "update" --> git push file # docker # 仅获取docker id【quiet】 docker ps -q # 删除exis原创 2020-12-31 16:31:10 · 193 阅读 · 0 评论 -
git push 冲突解决
在做push提交前,需要做pull操作将本地仓库的文件更新到最新,故一般按以下顺序执行git操作 git add . git commit -m "update xxx" git pull git push # 进入指定路径下 git branch # 查看远程的分支名原创 2020-12-08 14:06:36 · 1269 阅读 · 0 评论
分享