因为经常容易忘记指令(年纪大了),所以打算记录一下将一堆文件从vscode上传到GitHub仓库
目录
- 软件下载
- 初始化状态
- 过程
- 可能出现的错误
- 其他操作
- 参考资料
软件下载
https://gitforwindows.org/
https://code.visualstudio.com/
初始化状态
过程
- 在根目录上,右键找到git bash here 输入 git init
- 点击左侧栏 source control
- 在命令行输入
git add -A (添加文件到暂存区)
git commit -m “提交信息”(把暂存区的文件提交到仓库)
git push(推送当前分支最新的提交到远程)
以上就是全过程
可能出现的错误
OpenSSL SSL_read: Connection was reset, errno 10054
看=》 https://blog.csdn.net/qq_29493173/article/details/114534057
其他操作
- 查自己的ip =》https://www.ipaddress.com/
- 克隆仓库:git clone <git地址>
- 查看提交的历史记录:git log --stat
- 工作区回滚:git checkout < filename >
- 撤销最后一次提交:git reset HEAD^1
- 以当前分支为基础新建分支:git checkout -b < branchname >
- 列举所有的分支:git branch
- 单纯地切换到某个分支:git checkout < branchname >
- 删掉特定的分支:git branch -D < branchname >
- 合并分支:git merge < branchname >
- 拉取远程分支最新的提交到本地:git pull
参考资料
https://www.bilibili.com/video/BV1db4y1d79C/?vd_source=8c0b9dc47f516c774fd7562538579fc5