Add and commit all the edited file to git with the commit message as the variadic arguments without quotes
File Name : gitpush.ps1
Author : Adewale Azeez - iamthecarisma@gmail.com
Date : Jan-03-2020
A short compact command to quickly add all edited files to a commit with the commit messages and push the changes to the currently active branch.
This command does not force push to remote, to force a push to remote regardless of remote changes, use the ‘gitfpush’ command.
gitpush [[-args] <String[]>] [<CommonParameters>]
attr |
value |
---|---|
Required? |
false |
Position? |
1 |
Default value |
|
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).
System.String[]
some text and analysis I don’t need
gitpush from here is the commit message
your changes will be commit with the message “from here is the commit message”. The command is equivalent to git add .; git commit -m “from here is the commit message”; git push origin HEAD
gitpush
This will commit your changes without any messages. git add .; git commit -m ““; git push origin HEAD