Last active
          September 29, 2015 02:02 
        
      - 
      
 - 
        
Save mdumrauf/bd880533ac27f4307b61 to your computer and use it in GitHub Desktop.  
    Git config file
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [alias] | |
| ft = fetch | |
| ftp = fetch -p | |
| st = status | |
| ci = commit | |
| cim = commit -m | |
| ciam = commit -a -m | |
| cp = cherry-pick | |
| rb = rebase | |
| rbi = rebase -i | |
| rbm = rebase origin/master | |
| unstage = reset HEAD | |
| uncommit = reset --soft HEAD^ | |
| br = branch -v | |
| bra = branch -a | |
| co = checkout | |
| cob = checkout -B | |
| df = diff | |
| l = log --decor --graph | |
| lg = log --stat --decor --graph | |
| up = pull --rebase origin master | |
| upwith = pull --rebase origin | |
| dc = diff --cached | |
| ph = push origin HEAD | |
| phf = push origin HEAD -f | |
| [color] | |
| ui = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold | |
| frag = magenta bold | |
| old = red bold | |
| new = green bold | |
| [color "status"] | |
| added = yellow | |
| changed = green | |
| untracked = cyan | |
| [core] | |
| editor = vim | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment