git clone 怎么复制到指定文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone 怎么复制到指定文件夹相关的知识,希望对你有一定的参考价值。
来个例子
1. 关于 _netrcmachine github.com
login myid
password mypassword
machine bitbucket.org
login myid
password mypassword
2. 进入路径 d: , 然后直接 clone , 会在 d: 下创建一个文件夹,内部是git的库内容
3. 把文件丢入这个文件夹
4.在 git中输入: git add .
5. 提交: git commit
(进入 VIM , 去除 add file 之前的各个#号,然后输入 :wq)
6.上传:git push origin master 参考技术A 把你“指定的文件夹”作为当前目录,然后直接clone就把项目克隆到你想要的位置了,我都是这样的,希望对你有帮助 参考技术B git clone remoteurl localdir
比如 git clone git@github.com/somerepo.git /home/admin/somerepo
eclipse 下使用git clone
方法一:eclipse安装好git插件后,直接import-git-project from git- clone url-输入github的网址等就可以了
方法二:使用git软件,到指定的目录,右击git bash here,git clone 加带有网址的文件.git,如(git clone https://github.com/justinmeister/Mario-Level-1.git)。下载到本地之后,利用file-open project from file system 根据上一部下载下来的文件路径进行导入。
以上是关于git clone 怎么复制到指定文件夹的主要内容,如果未能解决你的问题,请参考以下文章