An open API service indexing awesome lists of open source software.

https://github.com/theodorusclarence/git-tips


https://github.com/theodorusclarence/git-tips

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Git Tips

Testing Tips

## 1. Renaming Last Commit

```sh
git commit --amend
```

https://youtu.be/jYV1utbwLRI

## 2. Renaming with rebase

```sh
git rebase -i HEAD~n
```

https://youtu.be/gX99EClXvRo

## 3. Why should we use push force

```sh
git push -f
```

https://youtu.be/YcakIFYV3CU