From 36c0288030684e35698a3aa509c357610f9e5718 Mon Sep 17 00:00:00 2001 From: "http://identi.ca/cwebber/" Date: Tue, 27 Nov 2012 23:58:10 +0000 Subject: Added a comment --- ...ent_4_f33fd6f72cb9ad7dd20a04c82199413b._comment | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 doc/forum/The_ability_to_leave_a_file_unlocked_for_a_bit_while_committing_it_repeatedly__63__/comment_4_f33fd6f72cb9ad7dd20a04c82199413b._comment diff --git a/doc/forum/The_ability_to_leave_a_file_unlocked_for_a_bit_while_committing_it_repeatedly__63__/comment_4_f33fd6f72cb9ad7dd20a04c82199413b._comment b/doc/forum/The_ability_to_leave_a_file_unlocked_for_a_bit_while_committing_it_repeatedly__63__/comment_4_f33fd6f72cb9ad7dd20a04c82199413b._comment new file mode 100644 index 000000000..ba6baad91 --- /dev/null +++ b/doc/forum/The_ability_to_leave_a_file_unlocked_for_a_bit_while_committing_it_repeatedly__63__/comment_4_f33fd6f72cb9ad7dd20a04c82199413b._comment @@ -0,0 +1,26 @@ +[[!comment format=mdwn + username="http://identi.ca/cwebber/" + nickname="cwebber" + subject="comment 4" + date="2012-11-27T23:58:10Z" + content=""" +Ah, thanks Joey... here's an updated version: + + function git-annex-unlocked-commit { + if [ $# -ne 2 ]; then + echo \"Wrong number of args.\" + return 1 + fi + + if [ ! -e \"$1\" ]; then + echo \"Need a filename!\" + return 1 + fi + + read -p \"Really do an unlocked commit? (y/n): \" + if [ \"$REPLY\" == \"y\" ]; then + git add $1 && git commit $1 -m \"$2\" && git annex unlock $1 + fi + } + +"""]] -- cgit v1.2.3