create a new repository on the command line

git init
git add README.md
git commit -m "first commit"
git remote add origin git@xxxxxxx.git
git push -u origin master

push an existing repository from the command line

git remote add origin git@xxxxxxx.git
git push -u origin master

相关文章:

  • 2022-12-23
  • 2021-07-24
  • 2021-10-24
  • 2021-07-12
  • 2021-10-06
  • 2021-07-15
猜你喜欢
  • 2021-08-07
  • 2022-01-09
  • 2021-09-09
  • 2021-10-15
  • 2022-12-23
相关资源
相似解决方案