上传git步骤

下载安装好git

首先进入到文件夹,右键然后点击 Git Bash Here 初始化git
git init

然后创建.gitignore记事本
把不用的文件都写在里面
touch gitignore
可以右键点击Git GUI Here打开界面查看

然后填写服务器地址映射
git remote add origin https://git.wowooh.cn/szy/pmwxapp.git


git add .

提交
git commit -m "Initial commit"

上传
git push -u origin main

猜你喜欢

转载自blog.csdn.net/growb/article/details/126406831