Loading... 1:先去 https://git-scm.com/downloads 下载git安装包 2:安装好了之后注册github账户 3:建仓库时Initialize this repository with a README不勾选 4:到本地项目文件夹右键选择git bash here 5:输入个人信息(代码提交者) 用户名: ``` git config --global user.name "xxxx" ``` 邮箱: ``` git config --global user.email xxxxx@qq.com ``` 6:在本地项目目录创建本地仓库 ``` git init ``` 输入命令后项目目录会有一个隐藏的.git文件夹 7:上传所有代码到本地仓库 ``` git add . ``` 这样就把代码上传到本地仓库了 ``` git commit -m "initial commit" ``` 8:上传代码到github New repository 复制仓库地址 关联本地仓库并上传代码 ``` git remote add origin https://github.com/Yanyf765/hr_sys.git(上步骤复制的地址) git push origin master ``` 每次更新只需要: ``` git add . git commit -m 优化 git push origin master ``` Last modification:September 4, 2023 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 如果觉得我的文章对你有用,请随意赞赏