Gitのrepositoryをcloneするときに、ディレクトリを作らない方法
まずは、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
参考記事:
Author And Source
この問題について(Gitのrepositoryをcloneするときに、ディレクトリを作らない方法), 我々は、より多くの情報をここで見つけました https://qiita.com/dossy/items/61d46fc600c8904850ce著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .