赞
踩
在目标文件右键 并点击 Git Bash Here
2.配置用户名和邮箱
- git config --global user.name ""
- git config --global user.email ""
3.初始化仓库
git init
4.添加项目目录下所有文件至本地仓库
git add .
5.提交注释,有意义的改动信息!
git commit -m '本次提交的说明'
1.复制远程仓库的http链接
2.与远程仓连接
git remote add origin url
3.强行将远程仓库文件(?)更新至指定远程仓库中(如果仓库为空可跳过这一步)
git pull --rebase origin master
4.将本地仓库中的文件推送至指定的远程仓库中
git push -u origin master
在Gitee网页刷新即可
1.在本地所在目录下右键 Git Bash here
2.删除目标文件
git rm -f --cached filename
3.提交注释
git commit -m "message"
4.推送至远程仓库
git push -u origin master
Q1 :换行符在不同平台是不一样的
原博客在CSDN > 报错解决方法
warning: in the working copy of '.vscode/tasks.json', LF will be replaced by CRLF the next time Git touches it
A1: 适用于Windows系统
- #提交时转换为LF,检出时转换为CRLF
- git config --global core.autocrlf true
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。