发布于 2024 年 10 月 21 日,星期一
这篇博客主要探讨了如何高效地使用Github的功能,包括但不限于创建和管理仓库、分支策略、代码审查、问题跟踪、持续集成与部署等。通过总结这些技巧,作者旨在帮助开发者提升在Github上的工作效率,优化团队协作流程,并确保代码质量和项目管理的有效性。
github 查看代码:
github1s.com
,可将代码在 vscode 中进行打开;.
键即可gitpod.com/#
如何修复github无法访问问题?
https://github.com/521xueweihan/GitHub520
拷贝最新的 DNS 记录C:\Windows\System32\drivers\etc
下的 hosts
文件github
上赋值的 DNS 记录值window + R
输入:ipconfig/flushdns
刷新本地 IP使用 t 键快速搜素文件
查看快捷键列表
shift +
【3分钟成为GitHub开源项目贡献者】 https://www.bilibili.com/video/BV1Fs4y1C7kS/?share_source=copy_web&vd_source=d42554f47179de3a2556b0e175436937
https://juejin.cn/post/7021727244124962846?searchId=20240227225852CFB0D285411DA59A5803
git remote -v
查看自己是否与远程仓库建立了连接git remote add upstream https://github.com/element-plus/element-plus.git
branchName
branchName
https://juejin.cn/post/6872554265718554637?searchId=20240227225852CFB0D285411DA59A5803
git checkout -b `新特性分支名: fix-npe-issue`
git add <filename> / git add .
git commit -m "xxxx"
git push origin fix-npe-issue
git remote add upstream git@github.com:google/guava.git
git pull upstream master
git push origin master
git branch -d fix-npe-issue
git push origin --delete fix-npe-issue