使用命令行创建仓库

如果你还没有任何代码,可以通过命令行工具创建一个全新的Git仓库并初始化到本项目仓库中。

git clone https://e.coding.net/***/neurosens.git
cd neurosens
echo "# neurosens" >> README.md
git add README.md
git commit -m "first commit"
git push -u origin master

使用命令行创建仓库_第1张图片

你可能感兴趣的:(Git,github)