0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Gitのrepositoryをcloneするときに、ディレクトリを作らない方法

Posted at

まずは、User/practice/git を作ってそこにクローンさせる。

git clone 'https://github.com/dossy/git-practice'

git-practiceにはindex.htmlとindex.jsがあるとする

git-practice
 |- index.html
 |
 |- index.js

cloneを行うと、User/practice/git/git-practiceが出来上がる。
htmlはUser/practice/git/git-practice/index.htmlのpathになる。

しかし、ピリオドをつけると
User/practice/git/のところにhtmlとjsが置かれる。
htmlはUser/practice/git/index.htmlのpathになる。

git clone 'https://github.com/dossy/git-practice .'
// シングルクォーテーションは不要

git直下にindex.jsを置くことができる

git
 |- index.html
 |
 |- index.js

参考記事:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?