Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreyjvm/git-demo
https://github.com/andreyjvm/git-demo
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreyjvm/git-demo
- Owner: AndreyJVM
- Created: 2024-04-14T19:26:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T12:00:30.000Z (8 months ago)
- Last Synced: 2024-12-15T20:47:23.291Z (23 days ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```