Git—上传代码至Github
首先得有个Github的账户,然后创建一个库。
然后找到指向改库的URL
第一次上传需要设置用户邮箱,打开git安装文件/bin下面找到git.bash并打开,设置全局git用户名和邮箱
git config --global user.name "用户名",git config --global user.email "邮箱",
然后进行推送
git remote add origin https://github.com/GodricLi/test.git 为地址起一个别名origin,
git push origin master 将本地master分支推送到github