markdown git创建一个新的存储库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown git创建一个新的存储库相关的知识,希望对你有一定的参考价值。

### create a new repository on the command line
```
echo "# TryDocFx" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/ronsun/TryDocFx.git
git push -u origin master
```

### push an existing repository from the command line
```
git remote add origin https://github.com/ronsun/TryDocFx.git
git push -u origin master
```

以上是关于markdown git创建一个新的存储库的主要内容,如果未能解决你的问题,请参考以下文章

在远程 OS X 服务器上创建一个新的 git 存储库

如何使用 CLI 从我现有的本地 git 存储库创建新的 gitlab 存储库?

git-shell - 新的存储库

markdown 创建一个新的Git(Hub)项目

将Git存储库移动到子文件夹

markdown git Untrack文件已经基于.gitignore添加到git存储库中