## Forked from https://gist.github.com/dersam/0ec781e8fe552521945671870344147b ## Also received help from https://twitter.com/gitkraken/status/691675309725368321 ## Open GitKraken using the current repo directory. ## This code is for fish shell. The same thing can be done in bash ## by creating an alias with the command below. ## `1>/dev/null` directs logs from the terminal ## `&` allows use of the same terminal instance to do other things ## Note: If you're not using OSX, the path is definitely different. function kraken set dir $argv[1] (pwd) # use a directory if you pass it in, otherwise cwd /Applications/GitKraken.app/Contents/MacOS/GitKraken -p $dir 1>/dev/null & end ## Now you can simply run `kraken` from your git repo directory. ## Optionally specify the directory of your git repo as the first parameter.