git checkout -t remote_name/remote_branch_name
git push origin --delete <branchName>
| 0-mail.com | |
| 0815.ru | |
| 0845.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 10minutemail.net | |
| 12houremail.com | |
| 12minutemail.com |
| from south import migration | |
| from south.models import MigrationHistory | |
| class SouthUnranMigrationCheck(object): | |
| def process_request(self, request): | |
| ''' | |
| Checks if you ran all South migrations. If not, it will throw an | |
| exception (DidNotApplyAllMigrations). |
| #!/bin/bash | |
| declare -a words=(resourse initialise construkt) | |
| declare -a misspellings | |
| i=0 | |
| for word in ${words[@]} | |
| do |
| #!/bin/bash | |
| _git_has_commits() { | |
| if git rev-parse --verify HEAD > /dev/null 2>&1; then | |
| return 0 | |
| else | |
| return 1 | |
| fi |
| gitprompt() { | |
| export GIT_PS1_SHOWDIRTYSTATE=true | |
| export GIT_PS1_SHOWSTASHSTATE=true | |
| export GIT_PS1_SHOWUNTRACKEDFILES=true | |
| export GIT_PS1_SHOWUPSTREAM="auto" | |
| export GIT_PS1_SHOWCOLORHINTS=true | |
| export PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "' | |
| . /usr/lib/git-core/git-sh-prompt |
| alias npmbin='echo -e "Setting up npmbin with path:\n$(npm bin)"; export PATH=$(npm bin):$PATH' |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/zsh | |
| # | |
| # fzf_preview_include - include normally ignored paths in fzf-preview | |
| # | |
| # Dependencies: zsh and ripgrep | |
| # | |
| # This command enables you to include extra dirs and files in fzf-preview, that | |
| # would normally be ignored by git or ripgrep. This can be handy for when you | |
| # use another git repository inside a parent one, or if you regularly edit | |
| # files that are ignored by git / ripgrep. |