Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 360 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 360 Bytes

git 命令学习

初始化

git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:uuRRx0/git-command.git
git push -u origin main

添加远程仓库到已有仓库

git remote add origin [email protected]:uuRRx0/git-command.git
git branch -M main
git push -u origin main