GitHub简单使用
Posted 上下求索.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitHub简单使用相关的知识,希望对你有一定的参考价值。
create a new repository on the command line
echo "# this is abc" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/uuid/abc.git
git push -u origin main
push an existing repository from the command line
git remote add origin https://github.com/uuid/abc.git
git branch -M main
git push -u origin main
push an modified code
git config --global push.default simple
以上是关于GitHub简单使用的主要内容,如果未能解决你的问题,请参考以下文章