Git 建仓合仓简易教程

  • 发表于
  • 日志

Git 全局设置:

git config --global user.name "id"
git config --global user.email "email"

创建 git 仓库:

mkdir 111
cd 111
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://giturl.git
git push -u origin master

已有项目?

cd existing_git_repo
git remote add origin https://giturl.git
git push -u origin master