git的使用教程
git 使用教程
- git init
- git add .
- 第一次需要输入你的邮箱和用户名:
- git config --global user.name '李景恒'
git config --global user.email '14146489+li-jingheng-a@user.noreply.gitee.com' - git commit -m “your project”
- git remote add origin https://gitee.com/li-jingheng-A/2024_-month12.git
- 提交代码:git push -u origin "master"