Conversation

Jarkko Sakkinen

My usual style to refactor symbol names is somewhat ad-hoc but usually does the job:

$ BEFORE=VIDEO_LOOP_CTL_ADD
$ AFTER=VIDIOC_LOOP_ADD
$ git grep -l $BEFORE | \
xargs sed -i "s/$BEFORE/$AFTER/g"

I don’t have a script for this because writing down manually helps to keep mind focused.

#git

1
0
1

The full scope of what I do have encapsulated to wrappers:

git-fetch-tag() {
  git fetch --no-tags "$1" "refs/tags/$2:refs/tags/$2"
}

git-fixes() {
  git --no-pager log --format='Fixes: %h ("%s")' --abbrev=12 -1 $1;
}

git-tip() {
  git --no-pager log -1;
}

git-tail() {
  git rev-list --max-parents=0 HEAD
}
0
1
1