# Fetch all remote branches, delete branch if upstream is gone git fetch --all --prune
Use Git like a pro.
Errors
Fix “ssh: connect to host github.com port 22: Connection timed out”
try to create or update ~/.ssh/config as followed:
1 2 3
Host github.com Hostname ssh.github.com Port 443
Then, run the command ssh -T git@github.com to confirm if the issue is fixed.
Cannot fetch all remote branchs
try to open your git config by git config -e (--global), and then modify relevant configuration:
1 2 3
[remote "origin"] url = https://git.example.com/example.git (you can omit this URL) fetch = +refs/heads/*:refs/remotes/origin/*
after that, you can run git fetch --all.
Generate or apply patch file
1 2 3 4 5 6 7 8 9
# Creating a patch from unstaged changes git diff > changes.patch # Creating a patch from staged changes git diff --cached > changes.patch # Creating a patch between two commits git diff commit1 commit2 > changes.patch # Apply the changes specified in changes.patch to your current working directory. git apply changes.patch