mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
8 lines
101 B
Bash
Executable file
8 lines
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dir=${1-.}
|
|
cd $dir \
|
|
&& git init \
|
|
&& git add . \
|
|
&& git commit -m 'Initial commit'
|