windows 下 git项目上传
Posted Forever-Road
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 下 git项目上传相关的知识,希望对你有一定的参考价值。
windows用户首先得安装git客户端,这个网上有很多,就不赘述了,安装完后会出现GitBash:
打开GitBash终端,输入:
git config --global user.name "账号"
git config --global user.email "邮箱"
然后进入到项目件夹下
git init
git remote add origin "项目的ssh"
git add . //注意这里 add 和 . 之间有个空格
git commit -m "程序源代码" //引号里面内容相当于一种说明,这个随意,对上传无关
git push -u origin master //这里就开始上传了
以上是关于windows 下 git项目上传的主要内容,如果未能解决你的问题,请参考以下文章
使用Windows下的git工具往github上传代码 踩坑记录