git clone
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone相关的知识,希望对你有一定的参考价值。
参考技术A 1、git clone 的理解git clone默认会把远程仓库整个给clone下来 ,只能clone远程库的master分支并在本地默认创建一个master分支 ,无法clone所有分支,若想要其它分支的内容,如下:
git clone默认会把远程仓库整个给clone下来
但只会在本地默认创建一个master分支
如果远程还有其他的分支,此时用git branch -a查看所有分支:
$ git branch -a
*master
remotes/origin/HEAD -> origin/master
remotes/origin/python_mail.skin
remotes/origin/vip
能看到远程的所有的分支,如remotes/origin/python_mail.skin 可以使用checkout命令来把远程分支取到本地,并自动建立tracking
$ git checkout -b python_mail.skin origin/python_mail.skin
Branch python_mail.skin set up to track remote branch python_mail.skin from origin.
Switched to a new branch 'python_mail.skin'
或者使用-t参数,它默认会在本地建立一个和远程分支名字一样的分支
$ git checkout -t origin/python_mail.skin
https://www.cnblogs.com/moranhuishou/p/7668481.html
Intellij Idea 配置git及clone项目
参考技术A 通过上图设置,点击“test”,如果配置成功可以看到当前安装的git的版本号以上是关于git clone的主要内容,如果未能解决你的问题,请参考以下文章
Git 常用操作 - git clone/git checkout -b/git diff/git push/git pull
Git 常用操作 - git clone/git checkout -b/git diff/git push/git pull