Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andreyjvm/git-demo


https://github.com/andreyjvm/git-demo

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

# Git command
```shell
git config --global user.name "Andrey Vorobev"
git config --global user.email "[email protected]"
```

```shell
git push origin main -f
```
```shell
git remote -v
git remote set-url origin "new_URI"
```
```shell
git add -f ./target/site/jacoco/
git commit -m "Add jacoco"
git push origin main
```
```shell
git rm --cached
```
```shell
git stash push --include-untracted
git merge origin/main main
```