Skip to content

Instantly share code, notes, and snippets.

View innocarpe's full-sized avatar
🎯
Focusing

Wooseong Kim innocarpe

🎯
Focusing
View GitHub Profile
@innocarpe
innocarpe / git-rif
Last active March 26, 2023 13:40
(non-interactive) interactive rebase with autosquash in short command
#!/bin/bash
# This runs (non-interactive) interactive rebase with autosquash in short command.
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# (This would be like 'export PATH=${PATH}:/Users/YOUR_HOME_PATH/.gitsh')
# 3. chmod 0755 git-rif
# 4. Use the command 'git ri COMMIT_HASH'
commit_hash=$1
@innocarpe
innocarpe / git-pr
Last active January 16, 2023 05:16
'git push && create a pull request command' for Github
#!/bin/bash
# This will push current branch to origin and open a 'Create a pull request' page for Github.
#
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# 3. chmod 0755 git-pr
# 4. Use the command 'git pr'
BRANCH=$(git branch --list | awk '{ if ($1 == "*") print $2 }'d)
@innocarpe
innocarpe / git-fp
Last active September 8, 2022 07:17
git-fp -
#!/bin/bash
# It is equal to `git fetch -p & git pull origin BRANCH_NAME`
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# (This would be like 'export PATH=${PATH}:/Users/YOUR_HOME_PATH/.gitsh')
# 3. chmod 0755 git-fp
# 4. Use the command 'git fp BRANCH_NAME'
BRANCH_NAME=$1
git fetch -p & git pull origin $BRANCH_NAME
@innocarpe
innocarpe / .zshrc
Last active April 18, 2022 02:07
.zshrc (Public Purpose)
...
# Open a scheme on the iOS Simulator
# Usage:
# $ deeplink "URL"
# $ deeplink "DEVICE" "URL"
function deeplink() {
if [ $2 ]; then
local device=$1
local url=$2
@innocarpe
innocarpe / git-pp
Last active September 22, 2020 06:22
Pull remote branch & Delete merged branches.
#!/bin/bash
# Pull remote branch & Delete merged branches.
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# (This would be like 'export PATH=${PATH}:/Users/YOUR_HOME_PATH/.gitsh')
# 3. chmod 0755 git-pp
# 4. Use the command 'git pp'
git pull --prune
@innocarpe
innocarpe / git-reb
Created September 22, 2020 02:52
Rebase latest base branch after pull when you working on a feature branch
#!/bin/bash
# This runs interactive rebase with short command.
# It is equal to `git pull --rebase origin BRANCH_NAME`
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# 3. chmod 0755 git-reb
# 4. Use the command 'git reb BRANCH_NAME'
BRANCH_NAME=$1
@innocarpe
innocarpe / LazySequenceTest.playground
Last active September 10, 2020 09:07
LazySequenceTest
import UIKit
struct NewHashtagFeed {
let components: [Component]
init(components: [Component]) {
self.components = components
}
}
@innocarpe
innocarpe / git-pmf
Last active August 12, 2020 02:56
Short git command of `git push origin CURRENT_BRANCH --force`
#!/bin/bash
# This will forch push current branch to origin
# This is just a short version of devxoul's `git pushme` script
# https://gist.githubusercontent.com/devxoul/a972ba0db2a25b989887/raw/f62353501becb274eb63c76b83fbcc01250a 286d/git-pushme
#
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# (This would be like 'export PATH=${PATH}:/Users/YOUR_HOME_PATH/.gitsh')
# 3. chmod 0755 git-pmf
@innocarpe
innocarpe / git-cof
Last active October 14, 2019 06:58
Fixup uncommited changes into target commit
#!/bin/bash
# Fixup uncommited changes into target commit
#
# `git cof` is a abbreviation of `git COmmit & Fixup rebase` :-)
#
# This will...
# 1. Commit uncommited changes with message "fixup! TARGET_COMMIT_HASH"
# 2. Fixup the commit meld into target commit with no interaction (non-interactive interactive rebase)
#
# Instruction
@innocarpe
innocarpe / git-ri
Last active September 6, 2019 09:27
Short git command for git interactive rebase (w/ specific commit)
#!/bin/bash
# This runs interactive rebase with autosquash in short command.
# It is equal to `git rebase -i COMMIT_HASH~1`
# 1. Move this file to ~/.gitsh/
# 2. Add directory path($YOUR_HOME_PATH/.gitsh) to environment variable file
# (like ~/.bash_profile or ~/.zshrc)
# (This would be like 'export PATH=${PATH}:/Users/YOUR_HOME_PATH/.gitsh')
# 3. chmod 0755 git-ri
# 4. Use the command 'git ri COMMIT_HASH'