aboutsummaryrefslogtreecommitdiff
path: root/ISSUES.markdown
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-20 12:43:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-20 12:43:48 +1200
commit974c0eb5398534583a8e4d4a19a8066de26bcd05 (patch)
treecd471f8cc6b2496be6166ed4eae8d22a80cd402e /ISSUES.markdown
parentPort ud() to POSIX sh (diff)
downloaddotfiles-974c0eb5398534583a8e4d4a19a8066de26bcd05.tar.gz
dotfiles-974c0eb5398534583a8e4d4a19a8066de26bcd05.zip
Add an issue
Diffstat (limited to 'ISSUES.markdown')
-rw-r--r--ISSUES.markdown14
1 files changed, 14 insertions, 0 deletions
diff --git a/ISSUES.markdown b/ISSUES.markdown
index 68c6c482..b057fc7d 100644
--- a/ISSUES.markdown
+++ b/ISSUES.markdown
@@ -19,3 +19,17 @@ Known issues
git-reflog(1) cals
* The \xFF syntax for regex as used in rfct(1) is not POSIX. Need to decide
if it's well-supported enough to keep it anyway.
+* Git prompt seems to change its mind about file moves after a run of
+ git-status:
+
+ tom@conan:~/.dotfiles(master)$ git mv bash/bashrc.d/ud.bash sh/shrc.d/ud.sh
+ tom@conan:~/.dotfiles(master!+)$ git diff --cached
+ diff --git a/bash/bashrc.d/ud.bash b/sh/shrc.d/ud.sh
+ similarity index 100%
+ rename from bash/bashrc.d/ud.bash
+ rename to sh/shrc.d/ud.sh
+ tom@conan:~/.dotfiles(master!+)$
+ tom@conan:~/.dotfiles(master!+)$
+ tom@conan:~/.dotfiles(master!+)$ git status
+ R bash/bashrc.d/ud.bash -> sh/shrc.d/ud.sh
+ tom@conan:~/.dotfiles(master+)$