添加 redeme.md

This commit is contained in:
Tianpao 2024-05-25 09:14:43 +00:00
commit 2927ee6b2e

11
redeme.md Normal file
View File

@ -0,0 +1,11 @@
#从命令行创建一个新的仓库
touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin http://154.201.72.75:5888/Tianpao/Easy_to_use_GIT.git
git push -u origin main
#从命令行推送已经创建的仓库
git remote add origin http://154.201.72.75:5888/Tianpao/Easy_to_use_GIT.git
git push -u origin main