rename git to Git

This commit is contained in:
lucas schneider
2021-01-07 11:06:38 -03:00
committed by Starbeamrainbowlabs
parent 2ec5fb9d50
commit eef3712fc3
104 changed files with 149 additions and 149 deletions

View File

@@ -3,11 +3,11 @@
> Remove untracked files from the working tree.
> More information: <https://git-scm.com/docs/git-clean>.
- Delete files that are not tracked by git:
- Delete files that are not tracked by Git:
`git clean`
- Interactively delete files that are not tracked by git:
- Interactively delete files that are not tracked by Git:
`git clean -i`
@@ -15,11 +15,11 @@
`git clean --dry-run`
- Forcefully delete files that are not tracked by git:
- Forcefully delete files that are not tracked by Git:
`git clean -f`
- Forcefully delete directories that are not tracked by git:
- Forcefully delete directories that are not tracked by Git:
`git clean -fd`