mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
5 lines
97 B
Bash
5 lines
97 B
Bash
#!/bin/sh
|
|
git add ./
|
|
read -p "Commit message: " msg
|
|
git commit -am "$msg"
|
|
git push origin master
|