原来gitee上的仓库是私有的,分享不够方便,特地创建了新的仓库ds2122,具体名称:https://gitee.com/guochaoxxl/ds2122.git

  官方提示:

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "guochaoxxl"
git config --global user.email "guochaoxxl@163.com"

创建 git 仓库:

mkdir ds2122
cd ds2122
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/guochaoxxl/ds2122.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/guochaoxxl/ds2122.git
git push -u origin master

相关文章:

  • 2021-11-28
  • 2021-12-03
  • 2021-11-15
  • 2022-01-02
  • 2021-11-14
  • 2021-12-09
  • 2021-09-10
猜你喜欢
  • 2022-12-23
  • 2021-12-26
  • 2021-09-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案