Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zeyu-li/git_initer_powershell

A Git initer, adder, and commits on first run 🤖. Based on https://github.com/Zeyu-Li/Git_initer
https://github.com/zeyu-li/git_initer_powershell

git-automation powershell shell

Last synced: 30 days ago
JSON representation

A Git initer, adder, and commits on first run 🤖. Based on https://github.com/Zeyu-Li/Git_initer

Awesome Lists containing this project

README

        

# Git Initer

This PowerShell Script command inits, adds, and commits the current directory given a first commit message

Based from my [Git_initer]( https://github.com/Zeyu-Li/Git_initer)

## Use

To use, simple put:

```powershell
cmt.ps1 # some commit message here

OR

cmt.ps1
# for a 'first init' commit message

```

Code:

```powershell

$commit_message=$args[0]

if (! $commit_message){
$message="first init"
} else{
$message=$commit_message
}

git init
git add .
git commit -m \""$message"\"

```