1
0
mirror of https://github.com/namibia/tips.git synced 2024-05-29 16:31:08 +00:00
This commit is contained in:
Hemanth.HM 2016-08-13 18:11:04 +00:00
parent 81040e9500
commit 9f75591eef
2 changed files with 2 additions and 2 deletions

View File

@ -683,7 +683,7 @@ git checkout <commit-ish> -- <file_path>
## Always rebase instead of merge on pull. ## Always rebase instead of merge on pull.
```sh ```sh
git config --global branch.autosetuprebase always git config --global pull.rebase true
``` ```
## List all the alias and configs. ## List all the alias and configs.

View File

@ -259,7 +259,7 @@
"tip": "git checkout <commit-ish> -- <file_path>" "tip": "git checkout <commit-ish> -- <file_path>"
}, { }, {
"title": "Always rebase instead of merge on pull.", "title": "Always rebase instead of merge on pull.",
"tip": "git config --global branch.autosetuprebase always" "tip": "git config --global pull.rebase true"
}, { }, {
"title": "List all the alias and configs.", "title": "List all the alias and configs.",
"tip": "git config --list" "tip": "git config --list"