021--Git使用
GIT教学

创建一个新项目并提交:or create a new repository on the command line

echo "# Vincent-RPC" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/enzoism/Vincent-RPC.git
git push -u origin master

项目已经存在直接提交:or push an existing repository from the command line

git remote add origin https://github.com/enzoism/Vincent-RPC.git
git push -u origin master

相关文章:

  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
  • 2021-07-31
  • 2021-09-11
  • 2021-05-09
  • 2021-10-04
猜你喜欢
  • 2020-06-02
  • 2021-10-05
  • 2022-12-23
  • 2021-11-23
  • 2021-12-04
  • 2021-11-07
  • 2021-08-24
相关资源
相似解决方案