helpful_snippets/Git/common.md

13 lines
168 B
Markdown

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