第一次上传代码到github (Linux)

来源:互联网 发布:淘宝有办假行驶证的吗 编辑:程序博客网 时间:2024/05/23 02:00
1    初始化
执行git init 


2   克隆

找到仓库地址,在github的具体项目上有

执行 git clone <地址>
并且把需要上传的文件拷贝过去

3  添加提交文件
git add *   即添加所有变动的

4 提交
git commit -m "描述"


*** Please tell me who you are.


Run
  
  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"


to set your account's default identity.
Omit --global to set the identity only in this repository.


fatal: unable to auto-detect email address (got 'root@ubuntu.(none)')

  git config --global user.email "user@github.com"
 git config --global user.name  "usrname"


5 push到远端(服务器)
git push origin master

看到出错了,403
403错误,则请编辑 .git/config文件

把红线的地方修改为   
即在github前面加上 username@
 url = https://username@github.com/username/repository.git 

重新git push origin master

执行unset SSH_ASKPASS
参考http://stackoverflow.com/questions/16077971/git-produces-gtk-warning-cannot-open-display


重新git push origin master    此时输入密码就ok了



0 0
原创粉丝点击