将本地项目上传至GitHub上

进入项目所在文件夹,打开Git Bash命令窗口进行如下命令

1.git init

2.git add 项目文件夹/*

3.git commit -m "提交说明"

4.git remote add origin [email protected]:Devil502177243/Electronic-Commerce.git

可以使用insert键在git bash中进行粘贴

5.git push -u origin master 

进行上传

6.更新后使用git push origin master 命令

错误解决:

git add时候报错:LF will be replaced by CRLF

宗旨是将core.autocrlf 设置成false

命令如下

  1. #备注可以使用--global 也可以不实用,影响不大  
  2. git config --global core.autocrlf true #这个是转换,也是默认值  
  3. git config --global core.autocrlf input #貌似是上库转换,从库中迁出代码不转换  
  4. git config --global core.autocrlf false  #这个一般是window上的,不转换 

git remote add origin ... 时出现fatal: remote origin already exists. 

先输入git remote rm origin,在进行 remote add origin


你可能感兴趣的:(git)