Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
eb557b89a1 | ||
|
e4e199f180 | ||
|
2d9bcfdaf0 | ||
|
df16a13800 | ||
|
74aaa072aa | ||
|
1502f90c91 | ||
|
7ac2b47822 | ||
|
80156574dd |
|
@ -0,0 +1,13 @@
|
|||
# git common stuff
|
||||
|
||||
## change remote url
|
||||
|
||||
```
|
||||
git remote set-url origin <new url>
|
||||
```
|
||||
|
||||
## remove permission change from git diff
|
||||
|
||||
```
|
||||
git config core.filemode false
|
||||
```
|
17
Readme.md
17
Readme.md
|
@ -4,11 +4,12 @@ This is a repository with useful snippets of various kinds of code
|
|||
|
||||
## Structure
|
||||
|
||||
- [Git](./Git/)
|
||||
- - [stash](./Git/stash.md)
|
||||
- [Linux](./Linux/)
|
||||
- - [certbot_nginx](./Linux/certbot_nginx.md)
|
||||
- [MySQL](./MySQL/)
|
||||
- - [all_foreign_keys_to_table_or_column](./MySQL/all_foreign_keys_to_table_or_column.md)
|
||||
- - [identify_lock](./MySQL/identify_lock.md)
|
||||
- - [users](./MySQL/users.md)
|
||||
- [Git](./src/branch/master/Git/)
|
||||
- - [stash](./src/branch/master/Git/stash.md)
|
||||
- - [common](./src/branch/master/Git/common.md)
|
||||
- [Linux](./src/branch/master/Linux/)
|
||||
- - [certbot_nginx](./src/branch/master/Linux/certbot_nginx.md)
|
||||
- [MySQL](./src/branch/master/MySQL)
|
||||
- - [all_foreign_keys_to_table_or_column](./src/branch/master/MySQL/all_foreign_keys_to_table_or_column.md)
|
||||
- - [identify_lock](./src/branch/master/MySQL/identify_lock.md)
|
||||
- - [users](./src/branch/master/MySQL/users.md)
|
Loading…
Reference in New Issue