1
0
mirror of https://github.com/namibia/tips.git synced 2024-05-30 17:01:11 +00:00

Fix shell command and spelling

This commit is contained in:
Samuel Chase 2015-08-14 10:36:46 +05:30
parent a0f2f10ec9
commit 2c82081aed

View File

@ -204,7 +204,7 @@ git log --no-merges --stat --reverse master..
## Pick commits across branches using cherry-pick
```sh
git checkout <branch-name> && cherry-pick <commit-ish>
git checkout <branch-name> && git cherry-pick <commit-ish>
```
## Find out branches containing commit-hash
@ -324,7 +324,7 @@ __Alternatives:__
git clean -df
```
## Update all the submoudles
## Update all the submodules
```sh
git submodule foreach git pull
```