git初始化项目仓储

潇潇与偕 / 2023-05-12 / 原文

Command line instructions

Git global setup
git config --global user.name "用户名"
git config --global user.email "git账号"
Create a new repository
git clone 服务器仓储地址
cd test
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder
cd existing_folder
git init
git remote add origin 服务器仓储地址
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository
cd existing_repo
git remote add origin 服务器仓储地址
git push -u origin --all
git push -u origin --tags