Skip to content

Instantly share code, notes, and snippets.

View Musoye's full-sized avatar
💭
Let's collaborate.

Oyebamiji Mustapha Oyetunde Musoye

💭
Let's collaborate.
View GitHub Profile
@Musoye
Musoye / commit.sh
Last active March 3, 2023 07:55
This is a shortcut for pushing code to github by entering the commit message only.
#!/bin/bash
# shortcut for pushing code to github
read -p "Enter your commit message: " -a commit_message
concat="${commit_message[@]}"
git add .
git commit -m "$concat"
git push