Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# This is Git's per-user configuration file.
[user]
name = Kishorekumar Neelamegam
email = nkishore@megam.io
[core]
excludesfile = /home/kishore.gitignore_global
[push]
default = simple
[http]
postBuffer = 524288000
[color]
ui = true
[url "git://git.debian.org/d-i/"]
insteadOf = git+ssh://git.debian.org/git/d-i/
name = Kishore Kumar
email = kishore.kumar@e2enetworks.com

[alias]
mr = !sh -c 'git fetch $1 merge-requests/$2/head:mr-$1-$2 && git checkout mr-$1-$2' -

# Override author email for usezombie and personal repos
[includeIf "hasconfig:remote.*.url:git@github.com:usezombie/**"]
path = ~/.gitconfig-usezombie

[includeIf "hasconfig:remote.*.url:git@github.com:indykish/**"]
path = ~/.gitconfig-usezombie

[includeIf "hasconfig:remote.*.url:https://github.com/usezombie/**"]
path = ~/.gitconfig-usezombie

[includeIf "hasconfig:remote.*.url:https://github.com/indykish/**"]
path = ~/.gitconfig-usezombie
2 changes: 2 additions & 0 deletions .gitconfig-usezombie
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[user]
email = nkishore@megam.io
2 changes: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,8 @@ Exit criteria:
- No branch mutation outside lifecycle transitions.
- No cross-worktree edits.
- No secrets in commits/docs.
- Never resolve or print credential values in conversation, code, docs, playbooks, or evidence files. This includes values seen in CI logs, error messages, or debug output — once seen, do not copy them anywhere. Check effects (health endpoints, connectivity status), not raw secrets. Use `op://` references and vault item names only.
- When writing verification steps that reference credentials, always use `op read 'op://...'` at runtime. Never paste a literal value, even as an "example" or "old value to test against."
- Prefer CLI and text artifacts. Do not require GUI-only tooling when a CLI path exists.

## Cognitive Discipline
Expand Down
Loading