aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/fatal:_empty_ident_name.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/fatal:_empty_ident_name.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/fatal:_empty_ident_name.mdwn')
-rw-r--r--doc/bugs/fatal:_empty_ident_name.mdwn51
1 files changed, 0 insertions, 51 deletions
diff --git a/doc/bugs/fatal:_empty_ident_name.mdwn b/doc/bugs/fatal:_empty_ident_name.mdwn
deleted file mode 100644
index 241477287..000000000
--- a/doc/bugs/fatal:_empty_ident_name.mdwn
+++ /dev/null
@@ -1,51 +0,0 @@
-**What steps will reproduce the problem?**
-
- stone@skynet ~/annex $ git init
- Initialized empty Git repository in /home/stone/annex/.git/
- stone@skynet ~/annex $ git annex init "work"
- init work
- *** Please tell me who you are.
-
- Run
-
- git config --global user.email "you@example.com"
- git config --global user.name "Your Name"
-
- to set your account's default identity.
- Omit --global to set the identity only in this repository.
-
- fatal: empty ident name (for <stone@skynet>) not allowed
- git-annex: git ["--git-dir=/home/stone/annex/.git","--work-tree=/home/stone/annex","commit-tree","4b825dc652cb6eb9a060e64bf8d69288fbee4904"] exited 128
- stone@skynet ~/annex $ git config -l
- user.email=stone@nospam.hu
- user.name=Stone
- core.editor=nano
- color.ui=auto
- core.repositoryformatversion=0
- core.filemode=true
- core.bare=false
- core.logallrefupdates=true
- annex.uuid=499fb545-0b98-4bfc-816c-fb3704f3aaa0
- stone@skynet ~/annex $ cat ~/.gitconfig
- [user]
- email = stone@nospam.hu
- name = Stone
- [core]
- editor = nano
- [color]
- ui = auto
- stone@skynet ~/annex $
-
-**What is the expected output? What do you see instead?**
-
-
-**What version of git-annex are you using? On what operating system?**
-
-commit 56c037c69e75def74d6ea90de8aa8a1954c52178 Arch Linux
-
-**Please provide any additional information below.**
-
-> [[done]] by adding name to the user, in /etc/passwd. --Stone
-
->> Actually, [[done]] by avoiding clobbering HOME when running some git
->> commands. --[[Joey]]