- fetch
- update your local copy of the remote branch
- ex: git fetch origin master
- pull
- fetch and merge
- ex: git pull
- add
- add a file to be committed
- ex: git add -A
This file contains 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
import System.Environment | |
import Control.Applicative((<|>)) | |
import Data.Char | |
( isAscii | |
, isDigit | |
) | |
import Data.Map | |
import Text.ParserCombinators.ReadP |
This file contains 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
set-option -g default-command "reattach-to-user-namespace -l zsh" | |
setw -g mode-keys vi | |
unbind [ | |
bind q copy-mode | |
bind Q display-panes | |
unbind p | |
bind p paste-buffer | |
bind-key -t vi-copy 'v' begin-selection | |
bind-key -t vi-copy 'y' copy-selection | |
set -g history-limit 50000 |