1
0
mirror of https://github.com/namibia/tips.git synced 2024-09-28 21:49:01 +00:00

Merge pull request #26 from samebchase/patch-2

Fix shell command and spelling
This commit is contained in:
hemanth.hm 2015-08-14 11:35:03 +05:30
commit ba2f4eac6e

View File

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