diff --git a/VSCode/git配置笔记.txt b/VSCode/git配置笔记.txt new file mode 100644 index 0000000..27b7ad3 --- /dev/null +++ b/VSCode/git配置笔记.txt @@ -0,0 +1,12 @@ +touch README.md +git init +git checkout -b main +git add README.md +git commit -m "first commit" +git remote add origin http://43.138.57.202:3000/JIAL/VSCode.git +git push -u origin main + + +git config --global user.name "JIAL" +git config --global user.email "2287346125@qq.com" +git add . //添加所有文件到仓库 \ No newline at end of file