• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






cwhycwhy

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2020年5月19日

git 日志技术
摘要: 1.git log, 在一个分支下, 以时间的倒序方式显示你制造的所有commit列表,包含创建人,时间,提交了什么等信息: 2. git reflog, 获取您在本地repo上还原commit所做工作的完整历史记录, 它将显示除提交以外, 还包括其他操作(checkout, reset等) , 这 阅读全文
posted @ 2020-05-19 09:36 cwhycwhy 阅读(136) 评论(0) 推荐(0)
 

2020年4月3日

git 文件提交错误处理
该文被密码保护。 阅读全文
posted @ 2020-04-03 15:51 cwhycwhy 阅读(0) 评论(0) 推荐(0)
 

2019年7月24日

聚集索引和非聚集索引
该文被密码保护。 阅读全文
posted @ 2019-07-24 12:06 cwhycwhy 阅读(2) 评论(0) 推荐(0)
 

2019年7月23日

存储过程错误处理
该文被密码保护。 阅读全文
posted @ 2019-07-23 16:46 cwhycwhy 阅读(2) 评论(0) 推荐(0)
 

2019年5月7日

Git常用命令
摘要: 项目错误恢复 方法一: $ echo >> about.html # Appends a newline to about.html $ echo > about.html # overwrite about.html with a newline [website (master)]$ git c 阅读全文
posted @ 2019-05-07 15:07 cwhycwhy 阅读(137) 评论(0) 推荐(0)
 
Prompt branches and tab completion
摘要: 编辑.bash_profile, 加入如下文本: # Git configuration# Branch name in promptsource ~/.git-prompt.shPS1='[\W$(__git_ps1 " (%s)")]\$ 'export PROMPT_COMMAND='echo 阅读全文
posted @ 2019-05-07 10:50 cwhycwhy 阅读(131) 评论(0) 推荐(0)
 

2019年4月25日

使用其他分支替换master分支
摘要: Updates were rejected because the tip of your current branch is behind 阅读全文
posted @ 2019-04-25 11:25 cwhycwhy 阅读(1329) 评论(0) 推荐(0)
 

2019年1月23日

ubuntu 快捷键
摘要: gnome-terminal and xfce4-terminal: Ctrl+Shift+c (copy) and Ctrl+Shift+v (paste)xterm: Ctrl+Insert (copy) and Shift+Insert (paste)If you are using a 3 阅读全文
posted @ 2019-01-23 11:16 cwhycwhy 阅读(119) 评论(0) 推荐(0)