git
Meta
Related:
文章
- How to create and apply a patch with Git Diff and Git Apply commands for your Drupal website | Specbee
- When to Use Each of the Git Diff Algorithms – Technical Scratchpad
小 tip
使用 cherrypick 时带上
-x
参数,可以在 commit message 最后生成一行 (cherry picked from sha) 这样的信息git -c core.editor=true rebase --continue
rebase continue 的时候去掉编辑器确认步骤 How to suppress the editor forgit rebase --continue
或者
GIT_EDITOR=true git rebase --continue
git config core.untrackedCache true
git config core.fsmonitor true # 这个在 windows 上的 2.33.0 git 似乎不支持?
排查问题
git connection slow
really-verbose-way-to-test-git-connection-over-ssh
GIT_SSH_COMMAND="ssh -v" git clone example
# or extra verbose
GIT_SSH_COMMAND="ssh -vvv" git clone example
Backlinks
programming index
- [[git]]