a1-提交代码到github

1.github创建仓库
右上角+-new Repository-填名称,初始化readme文件
2.克隆到本地

# 安装git,在任意目录右键-git bash here
git clone https://github.com/wupz/spring-boot-quickstart.git
# 设置邮件地址
git config --global user.email [email protected]
# 设置用户名
 git config --global user.name Vincent Wu

3.提交代码到本地仓库
复制源码包到git clone生成的文件夹
右键git gui here-点stage changed-点Commit
4.添加远程仓库
菜单-Remote-Add
Name随便填
Location填github的git地址
点击Add-输入github邮箱和密码
5.提交代码到远程仓库
输入Commit Message-Commit

你可能感兴趣的:(a1-提交代码到github)