Git Use

Here I list some Git settings or operations.

Git change credential.helper to store, see

git config --global credential.helper store

Git delete branch

# Switch to a branch other than the one you want to delete
git checkout <branch_name_you_are_not_deleting>

# Delete the local branch
git branch -d <branch_name_to_delete>
# If the branch has unmerged changes, you may need to force delete
# git branch -D <branch_name_to_delete>


# Delete the remote branch
git push origin --delete <branch_name_to_delete>

Git use store credential.helper, waring: [.git-credentials] new line must be end with \n, \r\n is not right

# Remove Local Credential Helper Configuration
git config --unset credential.helper

# Check System-Wide Configuration remove
git config --system -l
git config --system --unset credential.helper
git config --global credential.helper store

Git create a tag and push to remote

git tag -a v1.0.0 -m "v1.0.0"

# Push to remote
git push origin v1.0.0
# if you want to push all tags
# git push origin --tags

# Delete tag like branch

Git user name and user email set

git config user.name "abcd" && git config user.email "[email protected]"

git config user.name "abcd"; git config user.email "[email protected]"