创建好仓库git第一次提交

 git config --global user.name "你的名字或昵称"
git config --global user.email "你的邮箱"

git init
git add . #将当前目录所有文件添加到git暂存区
git commit -m "my first commit" #提交并备注提交信息
git remote add origin https://gitee.com/用户个性地址/HelloGitee.git
git push origin master

posted @ 2023-07-05 15:42  Webwhl  阅读(3)  评论(0编辑  收藏  举报