From 2927ee6b2e4cbdd1d78c21719bcf31714a9c8d1c Mon Sep 17 00:00:00 2001 From: Tianpao Date: Sat, 25 May 2024 09:14:43 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20redeme.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redeme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 redeme.md diff --git a/redeme.md b/redeme.md new file mode 100644 index 0000000..0115e65 --- /dev/null +++ b/redeme.md @@ -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 \ No newline at end of file