`
xiao
  • 浏览: 165703 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Git config 缩写配置

 
阅读更多

初次安装运行Git,建议在命令行中运行以下命令,配置缩写和颜色,可以有效提高效率

 

 

git config --global --add user.email "mebusw@163.com"  
git config --global --add user.name "mebusw"
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.last 'log -1 HEAD'
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git config --global alias.co checkout
git config --global merge.tool kdiff3
git config --global meregtool.kdiff3.path "/usr/bin/kdiff3"
git config --global alias.visual "!gitk"

 

 

建立文件~/.gitignore_global

#compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.pyc

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
.svn
*.bak
 
分享到:
评论

相关推荐

    Git config 配置

    例如,如果你想将`git status`简写为`gst`,可以这样设置: ``` git config --global alias.gst 'status' ``` 5. **合并策略** Git提供了多种合并策略,如`merge`(默认)和`rebase`。如果你想在拉取时自动重基...

    git的配置文件

    `.gitconfig`文件是我们关注的焦点,通常用于存储全局配置。 `.gitconfig`文件通常位于用户的主目录下,例如在Unix/Linux系统中是`~/.gitconfig`,在Windows系统中是`%USERPROFILE%\.gitconfig`。这个文件使用INI...

    淘宝-git优化包 自动配置,只需要一个命令完成所有常用配置

    解压缩文件,进入gitconfig目录,将里面的文件全部复制到Git安装目录下的cmd文件夹中 启动一个Git Bash窗口 执行命令: gitconfig ada ada@taobao.com Linux 下载压缩包 解压缩 tar xvf gitconfig.tar 执行配置脚本...

    sixarm_git_gitconfig:SixArm.com:Git:gitconfig文件,别名,颜色,分支等

    别名是`gitconfig`中的另一个重要功能,它允许我们为常用的Git命令创建简写。比如,我们可以定义`alias.lg = "git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C...

    git指令记录.pdf

    配置Git是使用Git的第一步,可以通过`git config`命令设置用户信息。例如,`git config --global user.name "Your Name"`用于设置全局用户名,`git config --global user.email "xx@example.com"`用来设置全局邮箱。...

    git命令大全,适合初学者

    这个命令实际上是git add和git commit的简写,它会自动把所有已跟踪的文件暂存起来然后一起提交。 14. git reset --soft [hash值] 用于将多次的提交合并为一次,但不会改变工作目录中的文件。 15. git reset --...

    git详细使用原理帮助小白快速上手

    11. **Git 配置**:使用 `git config` 命令配置用户名和邮箱,例如 `git config --global user.name "Your Name"` 和 `git config --global user.email "youremail@example.com"`。 12. **初始化 Git 仓库**:`git ...

    GTIT简单入门

    这是通过`git config`命令完成的,例如`git config --global user.name "你的名字"`和`git config --global user.email "你的邮箱"`。这些配置信息对于Git识别你的身份至关重要,因为Git中的每一次提交都会记录这些...

    linux-快速配置nix开发环境以及装机必备神器

    例如,你可以在`.gitconfig`文件中添加`alias`,将`commit`命令简写为`c`,`push`命令简写为`p`。此外,还可以配置`gitignore`文件,忽略特定类型的文件,保持仓库整洁。 最后是`tmux`,这是一个终端复用器,允许你...

    git-simpleserver:从命令行管理自己的Git服务器

    Git Simple Server(缩写为“ git ss”)使您可以轻松地从命令行在自己的服务器上管理Git存储库。 它是超轻量级的,安全的,只需要一个shell, git和ssh 。 它具有集成的用户管理,使按用户,按存储库的读写权限...

    git-commands:自定义高级用户git命令

    - 使用`git config`命令,用户可以在`~/.gitconfig`文件中定义自定义命令,这些命令可以是复杂的脚本或简单的一行命令。 4. **Git插件和附加组件**: - 标签`git-addons`和`git-tool`暗示存在一些扩展Git功能的...

    CentOS下搭建Git,Gerrit Jenkins版本控制系统

    不仅包括了基础的Linux系统安装过程,还详细介绍了Git、Gerrit和Jenkins的安装、配置方法以及它们之间的集成方式。 ##### 1.3 定义、首字母缩写和缩略语 - **CentOS系统**:一种基于Linux的操作系统。 - **Nginx**...

    git checkout 命令使用详解

    通过编辑`.gitconfig`文件,可以创建如下的别名配置: ```ini [alias] st = status co = checkout br = branch mg = merge ci = commit md = commit --amend dt = difftool mt = mergetool last = log -1 ...

    git-pushdemont:自定义Git命令,将您的提交标记为已推送,然后在8秒后恢复该过程

    要创建这样一个自定义命令,你可能需要在你的全局`.gitconfig`文件中定义一个新的别名,如下所示: ```bash [alias] pushdemont = "!f() { git commit -m '暂存提交'; sleep 8; git push; }; f" ``` 这会在Git中...

    TestGit:推送代码len git

    6. **配置用户信息**: 在本地执行`git config --global user.name "用户名"`和`git config --global user.email "邮箱"`,确保Git知道是谁在提交代码。 **推送代码到远程仓库** 7. **查看远程分支**: `git remote ...

    webpack项目开发配置1

    默认情况下,Webpack 配置文件的名称为 webpack.config.js。 建议创建两个文件: * webpack.dev.config.js:开发环境配置文件 * webpack.pub.config.js:生产环境配置文件 这些文件将在后面的文章中详细介绍。 ...

    atom1.0.2相关配置文件

    8. **首选项**:`settings` 文件夹可能包含特定插件的配置文件,这些配置不会在 `config.cson` 中,而是单独保存。 9. **工作区**:`.atom/workspaces` 文件夹存储了不同的工作区布局,方便在多个项目之间切换。 ...

    ISatSS_CONFIG:ISatSS配置文件

    ISatSS_CONFIG是一个与Python相关的配置文件,它用于设置和管理ISatSS(可能是"Inter Satellite SmallSat System"的缩写)系统。这个系统可能是一个卫星通信或遥感项目,其中涉及小型卫星之间的数据交换和控制。配置...

    GitAliases:一些适用于任何项目的Git别名

    这些别名只是缩写现有Git命令/选项,以节省一些打字(例如, chb代替checkout --branch )。 他们使用以下命名约定: 相应于节略的git命令一两个字母(例如, a用于add或rb用于rebase ) 此后的每个字母对应于该...

Global site tag (gtag.js) - Google Analytics