danix
's git repository
home
/
my projects
/
git_shell.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81873de
)
modified create command to ensure a prompt for the project description is displayed
author
danix
<danix@danix.xyz>
Tue, 18 Dec 2018 14:18:28 +0000
(15:18 +0100)
committer
danix
<danix@danix.xyz>
Tue, 18 Dec 2018 14:18:28 +0000
(15:18 +0100)
create
patch
|
blob
|
blame
|
history
diff --git
a/create
b/create
index
04d299a
..
f3fa041
100755
(executable)
--- a/
create
+++ b/
create
@@
-23,7
+23,8
@@
function is_bare() {
function git_init() {
PROJECT=$1
echo "creating project \"${PROJECT}.git\""
- read -p "Describe your project in one line: " DESCRIPTION
+ echo -n "Describe your project in one line: "
+ read DESCRIPTION
if [ ! -d ${GITDIR}/${PROJECT}.git ]; then
mkdir ${GITDIR}/${PROJECT}.git
fi