helpful_snippets/Git/common.md

13 lines
176 B
Markdown

# git common stuff
## change remote url
```bash
git remote set-url origin <new url>
```
## remove permission change from git diff
```bash
git config core.filemode false
```