Skip to content

Instantly share code, notes, and snippets.

View swifterfit's full-sized avatar
🌎
Focusing

Emir swifterfit

🌎
Focusing
  • Zhihu
  • China
View GitHub Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases.
# Much of this was originally copied from:
# http://natelandau.com/my-mac-osx-bash_profile/
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
@swifterfit
swifterfit / git_config
Created March 4, 2018 02:24
git local/global name and email
git config --global user.name "Your Name"
git config --global user.email [email protected]
全局的通过vim ~/.gitconfig来查看
git config user.name "Your Name"
git config user.email [email protected]
局部的通过当前路径下的 .git/config文件来查看
也可以修改提交的用户名和Email:
git commit --amend --author='Your Name <[email protected]>'