Obsidian Integration With Git Repositories

Sub-skill of obsidian: Integration with Git Repositories.

vamseeachanta Updated

File contents

Integration with Git Repositories

Integration with Git Repositories

#!/bin/bash
# Link project documentation to code repository

PROJECT_NAME="my-project"
CODE_REPO="$HOME/code/$PROJECT_NAME"
VAULT_PATH="$HOME/Documents/ObsidianVault"

# Create project folder in vault
mkdir -p "$VAULT_PATH/Projects/$PROJECT_NAME"

# Symlink docs folder from code repo
ln -s "$CODE_REPO/docs" "$VAULT_PATH/Projects/$PROJECT_NAME/Docs"

# Create project overview note
cat > "$VAULT_PATH/Projects/$PROJECT_NAME/Overview.md" << EOF
---
title: $PROJECT_NAME
type: project
repo: $CODE_REPO
status: active
---

# $PROJECT_NAME

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/business/productivity/obsidian/integration-with-git-repositories commit c9391b1fee

Frequently asked questions

npx skillmds@latest add vamseeachanta/obsidian-integration-with-git-repositories