博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git 拉取远程分之到本地
阅读量:6463 次
发布时间:2019-06-23

本文共 365 字,大约阅读时间需要 1 分钟。

git checkout -b newbranch_name --track origin/feature/newbranch_name 

如果遇到类似:

fatal: git checkout: updating paths is incompatible with switching branches.Did you intend to checkout 'origin/remote-name' which can not be resolved as commit?
的问题
可使用一下命令:
git remote show origin
git remote updategit fetch
然后再使用:
git checkout -b local-name origin/remote-name
命令即可。
参考资料:

 

转载地址:http://lthzo.baihongyu.com/

你可能感兴趣的文章
编译安装httpd 2.4
查看>>
centos6.x svn搭建
查看>>
使用innodb_ruby 分析innodb物理文件
查看>>
mysql+mysql_proxy+haproxy+memcache (mysql的读写分离)
查看>>
shell检测网站状态码和访问时间
查看>>
django与mysql交互
查看>>
Windows 搭建Hadoop 2.7.3开发环境
查看>>
python操作mysql数据库实现增删改查
查看>>
远程登录:Linux下 telnet 服务的安装与使用
查看>>
percona 5.7.11root初始密码设置
查看>>
ovirt官方安装文档 附录F
查看>>
Xtrabackup恢复mysql数据时候报错:Original data directory is not empty!
查看>>
Python的lambda表达式
查看>>
linux权限集中管理和行为日志审计
查看>>
存储过程基本语法
查看>>
JQuery与GridView控件结合示例
查看>>
安装IDSM-2系统映像到Catalyst IOS Software中
查看>>
composer常用包
查看>>
install_nginx_php
查看>>
Cognitive Security的异常检测技术
查看>>