summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-09-20 10:52:59 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-09-20 10:52:59 -0400
commit5bca08665bce0f602dbe43d4fbd5fe409ad37792 (patch)
tree29ed77da7f477ff7c43cebe37d882d88015412fb
parent936f46da9f4423d77383be3c00874b9a4072a392 (diff)
parentca836d56f81f5767e998c30bbcce342f5f529a1e (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/forum/git-status_typechange_in_direct_mode.mdwn48
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/forum/git-status_typechange_in_direct_mode.mdwn b/doc/forum/git-status_typechange_in_direct_mode.mdwn
new file mode 100644
index 000000000..6438fb890
--- /dev/null
+++ b/doc/forum/git-status_typechange_in_direct_mode.mdwn
@@ -0,0 +1,48 @@
+Hi all,
+
+how can I get rid of all those 'typechange' messages in `git status`
+when in direct mode?
+
+Here is an example session:
+
+ > git init
+ Initialized empty Git repository in /some/path/.git/
+ > git config user.name dtrn
+ > git config user.email drn@drn.com
+ > git annex init
+ init ok
+ (Recording state in git...)
+ > git annex direct
+ commit
+ # On branch master
+ #
+ # Initial commit
+ #
+ nothing to commit (create/copy files and use "git add" to track)
+ ok
+ direct ok
+ > dd if=/dev/zero of=testfile.bin count=1000
+ 1000+0 records in
+ 1000+0 records out
+ 512000 bytes (512 kB) copied, 0.00317424 s, 161 MB/s
+ > git annex add testfile.bin
+ add testfile.bin (checksum...) ok
+ (Recording state in git...)
+ > git commit -m "annexed testfile.bin"
+ ok
+ [master (root-commit) 281e740] annexed testfile.bin
+ 1 file changed, 1 insertion(+)
+ create mode 120000 testfile.bin
+ > git status
+ # On branch master
+ # Changes not staged for commit:
+ # (use "git add <file>..." to update what will be committed)
+ # (use "git checkout -- <file>..." to discard changes in working directory)
+ #
+ # typechange: testfile.bin
+ #
+ no changes added to commit (use "git add" and/or "git commit -a")
+
+
+Regards,
+Andreas