All of lore.kernel.org
 help / color / mirror / Atom feed
* use GIT_DIR instead of /var/tmp
@ 2006-01-05 11:52 Alex Riesen
  2006-01-05 16:38 ` H. Peter Anvin
  2006-01-05 16:42 ` Linus Torvalds
  0 siblings, 2 replies; 8+ messages in thread
From: Alex Riesen @ 2006-01-05 11:52 UTC (permalink / raw)
  To: Junio C Hamano, git

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

Not every system (will not one microsoft windows system) have /var/tmp,
whereas using GIT_DIR for random temporary files is more or less established.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>

[-- Attachment #2: 0006-use-GIT_DIR-instead-of-var-tmp.txt --]
[-- Type: text/plain, Size: 531 bytes --]

Subject: [PATCH] use GIT_DIR instead of /var/tmp

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>


---

 git-reset.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

9ba3fa786e3de644a9395f99e69cede912f64571
diff --git a/git-reset.sh b/git-reset.sh
index eb44ee8..6c9e58a 100755
--- a/git-reset.sh
+++ b/git-reset.sh
@@ -3,7 +3,7 @@
 USAGE='[--mixed | --soft | --hard]  [<commit-ish>]'
 . git-sh-setup
 
-tmp=/var/tmp/reset.$$
+tmp=${GIT_DIR}/reset.$$
 trap 'rm -f $tmp-*' 0 1 2 3 15
 
 reset_type=--mixed
-- 
1.0.GIT

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-01-06 10:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-05 11:52 use GIT_DIR instead of /var/tmp Alex Riesen
2006-01-05 16:38 ` H. Peter Anvin
2006-01-05 16:47   ` Alex Riesen
2006-01-05 17:07     ` H. Peter Anvin
2006-01-05 16:42 ` Linus Torvalds
2006-01-05 16:49   ` Jon Nelson
2006-01-06  9:32     ` Alex Riesen
2006-01-06 10:00       ` Johannes Schindelin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.