跳至主要內容

创建仓库

盒子先生小于 1 分钟约 138 字笔记Git...


----------------------------Git 全局设置:---------------------------------------
git config --global user.name "蔡磊"
git config --global user.email "1796535192@qq.com"

----------------------------创建 git 仓库---------------------------------------
mkdir test
cd test
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/dangerouspeople/test.git
git push -u origin "master"

-------------------------------已有仓库---------------------------------------
cd existing_git_repo
git remote add origin https://gitee.com/dangerouspeople/test.git
git push -u origin "master"

上次编辑于:
贡献者: Mr.Box
你认为这篇文章怎么样?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
评论
  • 按正序
  • 按倒序
  • 按热度