mirror of
https://github.com/namibia/tips.git
synced 2024-12-23 10:38:58 +00:00
This commit is contained in:
commit
4cf5bbdaa7
@ -482,6 +482,11 @@ __Alternatives:__
|
|||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git submodule update --remote
|
||||||
|
```
|
||||||
|
|
||||||
## Show all commits in the current branch yet to be merged to master
|
## Show all commits in the current branch yet to be merged to master
|
||||||
```sh
|
```sh
|
||||||
git cherry -v master
|
git cherry -v master
|
||||||
|
@ -173,7 +173,7 @@
|
|||||||
}, {
|
}, {
|
||||||
"title": "Update all the submodules",
|
"title": "Update all the submodules",
|
||||||
"tip": "git submodule foreach git pull",
|
"tip": "git submodule foreach git pull",
|
||||||
"alternatives": ["git submodule update --init --recursive"]
|
"alternatives": ["git submodule update --init --recursive", "git submodule update --remote"]
|
||||||
}, {
|
}, {
|
||||||
"title": "Show all commits in the current branch yet to be merged to master",
|
"title": "Show all commits in the current branch yet to be merged to master",
|
||||||
"tip": "git cherry -v master",
|
"tip": "git cherry -v master",
|
||||||
@ -361,7 +361,10 @@
|
|||||||
}, {
|
}, {
|
||||||
"title": "Clone a shallow copy of a repository",
|
"title": "Clone a shallow copy of a repository",
|
||||||
"tip": "git clone https://github.com/user/repo.git --depth 1"
|
"tip": "git clone https://github.com/user/repo.git --depth 1"
|
||||||
|
<<<<<<< HEAD
|
||||||
}, {
|
}, {
|
||||||
"title": "Search Commit log across all branches for given text",
|
"title": "Search Commit log across all branches for given text",
|
||||||
"tip": "git log --all --grep='<given-text>'"
|
"tip": "git log --all --grep='<given-text>'"
|
||||||
|
=======
|
||||||
|
>>>>>>> 93e25eb7185e0e98398a170126f9395f26096798
|
||||||
}]
|
}]
|
||||||
|
Loading…
Reference in New Issue
Block a user