- Command Line
- Bash Scripting
- Curl
- Package Management
- Version Management
- Git
- Toolbox
- Virtualization
- Visual Studio Code
- Vim
- Boilerplates
- Hosting
- Basics
- Cheat Sheet
- Compose
- APIs
- CSS
- Concepts
- Date & Time
- Formatting
- Sass
- Bootstrap
- MySQL
Cheat Sheets
Tools
Docker
Guidelines
JavaScript
CSS
Databases
Cheat Sheets - Git
Table of Contents
- Initial Configuration
- Display Branch in Terminal
- Delete a File from a Git Repository
- Empty Commit
- Set Up a Local Branch to Track a Remote One
- Delete a Local Branch
- Remove Untracked Files
Initial Configuration
$ git config --global color.ui true
$ git config --global user.name "YOUR NAME"
$ git config --global user.email "YOUR@EMAIL.com"
Source: https://gorails.com/setup/ubuntu/20.04
Display Branch in Terminal
Add to ~/.bash_rc
(or ~/.bash_profile
):
# Git branch in prompt.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "
Source: https://gist.github.com/joseluisq/1e96c54fa4e1e5647940
Delete a File from a Git Repository
$ git rm path_to_file_to_delete
$ git commit -m 'Remove file_to_delete'
Source: https://stackoverflow.com/questions/2047465/how-can-i-delete-a-file-from-git-repo
Empty Commit
$ git commit --allow-empty -m "This is an empty commit"
Source: https://coderwall.com/p/vkdekq/git-commit-allow-empty
Set Up a Local Branch to Track a Remote One
Affects the currently checked out branch.
$ git branch -u origin/branch_name_on_remote
Source: https://www.git-tower.com/learn/git/faq/track-remote-upstream-branch
Delete a Local Branch
$ git branch -d local_branch_name
Source: https://www.git-tower.com/learn/git/faq/delete-remote-branch
Remove Untracked Files
This is done through the git clean
command. It can be run in the dry run mode (-n
option) to check the files that will be deleted:
$ git clean -n
To include untracked directories in the cleaning process, use the -d
option:
$ git clean -d -n
To actually delete the untracked files, remove the -d
option. Depending on the value of the Git configuration variable clean.requireForce
, it may be necessary to use the -f
option, otherwise clean
will refuse to run. A path can be provided to limit the cleaning process to it.
$ git clean -d -f some_path
-X
can be used to remove all files and directories specified by .gitignore
. To delete both ignored and untracked files/directories, use the -x
option instead:
$ git clean -d -n -x
$ git clean -d -n -X
Lastly, -i
can be used to the process interactively:
$ git clean -d -i
Source: https://linuxize.com/post/how-to-remove-untracked-files-in-git/