Add and commit all the edited file to git with the commit message as the variadic arguments without quotes,pull from specific branch and pull again
File Name : gitpush.ps1
Author : Adewale Azeez - iamthecarisma@gmail.com
Date : Oct-06-2021
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.
After pushing your update, it pull the specified branch, then push again, the branch to pull is specify by the -Branch flag.
This command does not force push to remote, to force a push to remote regardless of remote changes, use the ‘gitfpush’ command.
gitppp [[-Branch] <String>] [[-args] <String[]>] [<CommonParameters>]
attr |
value |
---|---|
Required? |
false |
Position? |
1 |
Default value |
|
Accept pipeline input? |
false |
Accept wildcard characters? |
false |
attr |
value |
---|---|
Required? |
false |
Position? |
2 |
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
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