Skip to content

Instantly share code, notes, and snippets.

@aroemen
Last active December 10, 2015 12:39

Revisions

  1. Alan Roemen revised this gist Jan 2, 2013. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion git-change-case.sh
    Original file line number Diff line number Diff line change
    @@ -3,4 +3,9 @@ git add -A
    git commit -m "renaming"
    mv foo2 FOO
    git add -A
    git commit --amend -m "renamed foo to FOO"
    git commit --amend -m "renamed foo to FOO"

    # or in git v1.7.7+
    git mv improper_Case improve_case2
    git mv improper_case2 improve_case
    git commit -m "<your message>"
  2. Alan Roemen created this gist Jan 2, 2013.
    6 changes: 6 additions & 0 deletions git-change-case.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    mv foo foo2
    git add -A
    git commit -m "renaming"
    mv foo2 FOO
    git add -A
    git commit --amend -m "renamed foo to FOO"