mirror of
https://github.com/danog/gift.git
synced 2024-12-02 17:28:15 +01:00
13 lines
360 B
CoffeeScript
13 lines
360 B
CoffeeScript
|
git = require '../src'
|
||
|
|
||
|
dir = "#{__dirname}/fixtures"
|
||
|
|
||
|
module.exports =
|
||
|
branched: git("#{dir}/branched", true)
|
||
|
checkout: git("#{dir}/checkout", true)
|
||
|
remotes: git("#{dir}/remotes", true)
|
||
|
simple: git("#{dir}/simple", true)
|
||
|
status: git("#{dir}/status", true)
|
||
|
submodule: git("#{dir}/submodule", true)
|
||
|
tagged: git("#{dir}/tagged", true)
|