honeynm

Git 全局设置:

git config --global user.name "ASxx"
git config --global user.email "123456789@qq.com"

创建 git 仓库:

mkdir wap
cd wap
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://git.oschina.net/name/package.git
git push -u origin master
已有项目?

cd existing_git_repo
git remote add origin https://git.oschina.net/name/package.git
git push -u origin master

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2021-07-07
  • 2021-12-21
  • 2021-12-21
  • 2021-12-21
  • 2021-12-21
猜你喜欢
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-21
  • 2021-12-21
  • 2021-12-21
相关资源
相似解决方案