Pull the latest update from the remote repository into your local repository.
File Name : gitpull.ps1
Author : Adewale Azeez - iamthecarisma@gmail.com
Date : Mar-02-2020
Pull the latest update from the remote repository into your local repository. This command requires you to be in a valig git folder.
If no argument is specified the remote update on the active branch will be pulled but if a branch is specified the update from the branch will be pulled.
gitpull [[-Branch] <String>] [<CommonParameters>]
The optional branch to pull from
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[]
git pull INFO
gitpull
pull a repository update from remote The command is equivalent to git pull HEAD
gitpull gh-pages
clone the Cronux repository branch ‘gh-pages’ The command is equivalent to git clone -b gh-pages https://github.com/Thecarisma/Cronux.git