How to give a git repo a name?

后端 未结 3 2015
粉色の甜心
粉色の甜心 2021-02-19 21:35

I am making a remote repo by using these command

mkdir NewRepo
cd NewRepo
git init

Then I clone this rep

3条回答
  •  萌比男神i
    2021-02-19 22:02

    The name is given by the directory, as mentioned above, though it does support given a description for software like gitweb:

    echo "Happy description" >.git/description
    

提交回复
热议问题