当前位置: 首页 > article >正文

git环境开发问题-处理

【开发环境】

git问题

让git不跟踪.pyc文件:

首先把之前的pyc文件删除:

git rm -f ./\*.pyc

然后在.gitignore的末尾添加:

*.pyc

.vscode/

同时屏蔽掉pyc, .vscode/文件的数据的变更

git登陆问题

Command line instructions

You can also upload existing files from your computer using the instructions below.

Git global setup
git config --global user.name "xxx"
git config --global user.email "xxx@xxx.com"

git删除分支:

git branch -d local_branch_name

git删除commit信息

git commit --amend    //这将会把最后一个commit合并到前一个提交中去

git修改commit分支

# 修改最近提交的 commit 信息

git commit --amend --message="modify message by daodaotest" --author="xxx <xxx@163.com>"

# 仅修改 message 信息

git commit --amend --message="modify message by daodaotest"

# 仅修改 author 信息

git commit --amend --author="xxx <xxx@xxx.com>"

git拉取远端分支合并本地:

git fetch --all

git reset --hard origin/feature-3.4.0-performance-optimazition

VSCode的debug配置

遇到闪退问题,将python 版本降低至其它版本即可。

参考 :

VSCode中python无法调试(调试闪退)的解决方法_vscode python debug闪退-CSDN博客

git 修改分支名称:

首先 git branch -m 旧分支名 新分支名

其次 git push --delete origin 旧分支名

将新分支名推上去

git push origin --set-upstream 新分支名

git ignore失效:

# 0. 进入项目路径

# 1. 清除本地当前的Git缓存

git rm -r --cached .

# 2. 应用.gitignore等本地配置文件重新建立Git索引

git add .

# 3. (可选)提交当前Git版本并备注说明

git commit -m 'update .gitignore'

git拉取远端分支到本地:

git fetch origin ac_branch:ac_branch 拉取远程分支到本地(方式二)

切换远程分支:

git checkout -b b350-py36pt1101cu102.-2.0.1 origin/b350-py36pt1101cu102.-2.0.1

git回退

git reset --hard d27236a72e8919051d2e0f356af9dabf7ffa09

commit信息修改

git commit --amend

删除分支:

git branch -D

修改commit之前的分支:

git log 找到需要修改分支的ID

 git rebase -i 8876a66df1ea4a7e911c271b2bd3292ddfa1eca0

Git 如何修改历史 Commit message


http://www.kler.cn/a/399933.html

相关文章:

  • 性能超越Spark 13.3 倍,比某MPP整体快数十秒 | 多项性能指标数倍于主流开源引擎 | 云器科技发布性能测试报告
  • 三周精通FastAPI:42 手动运行服务器 - Uvicorn Gunicorn with Uvicorn
  • 任意文件下载漏洞
  • 系统思考—结构影响行为
  • yum工具的学习
  • wordpress使用相关
  • 【Oracle实战】文章导读
  • go的接口详解
  • C++小白实习日记——Day 2 TSCNS怎么读取当前时间
  • css3的新特性有哪些?
  • 深度神经网络 FPGA 设计与现状
  • PCL点云开发-解决在Qt中嵌入点云窗口出现的一闪而过的黑窗口
  • 2024RISC-V中国峰会 演讲幻灯片和视频回放公开
  • 跨平台编译Go程序:GOOS和GOARCH环境变量的使用
  • 儿童玩具常用的语音ic芯片类别?
  • DNS原理详解,DNS解析过程
  • Python函数——函数的传入参数
  • HTTP/3 深入解读:现代互联网的加速引擎
  • WEB攻防-通用漏洞SQL注入Tamper脚本Base64Jsonmd5等
  • OceanBase 闪回查询
  • 国标GB28181视频平台EasyCVR视频融合平台H.265/H.264转码业务流程
  • FPGA开发流程
  • 企业组网面临的安全挑战及SD-WAN解决方案
  • [产品管理-89]:《产品思维30讲》的主要内容与核心思想,产品的本质是利用各种工具和思维模式,为用户和社会创造真正解决问题和满足需求的价值
  • OLED透明屏在零售行业有哪些优势
  • 【vba源码】导入excel批注信息