@@ -0,0 +1,5 @@
+function cdg --description 'Go to root folder of the current Git repository'
+ if set -l GIT_ROOT (git rev-parse --show-toplevel)
+ cd $GIT_ROOT
+ end
+end