git-repository

git-repository

本文讲述如何上传本地代码到远程的空仓库。

Create a new repository
1
2
3
4
5
6
git clone https://github.com/MrSeaWave/tem.git
cd tem
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Push an existing folder
1
2
3
4
5
6
cd existing_folder
git init
git remote add origin https://github.com/MrSeaWave/tem.git
git add .
git commit -m "Initial commit"
git push -u origin master
Push an existing Git repository
1
2
3
4
5
cd existing_repo
git remote rename origin old-origin
git remote add origin https://github.com/MrSeaWave/tem.git
git push -u origin --all
git push -u origin --tags
作者

Sea

发布于

2021-06-03

更新于

2023-01-10

许可协议

评论